/* ==========================================================================
   EvTaxi - evtransfer.is
   Dark Nordic look: deep night sky, aurora accents in the brand's EV-green.
   ========================================================================== */

:root {
  --bg0: #06090f;
  --bg1: #0a101b;
  --surface: rgba(17, 24, 39, 0.66);
  --surface-solid: #101724;
  --line: rgba(255, 255, 255, 0.09);
  --text: #eef2f7;
  --muted: #98a5b7;
  --green: #6fd24a;
  --green-deep: #37b34a;
  --teal: #2dd4a7;
  --violet: #7c6cf0;
  --grad: linear-gradient(120deg, var(--green-deep), var(--green) 55%, var(--teal));
  --glow: 0 10px 40px -12px rgba(111, 210, 74, 0.55);
  --r: 18px;
  --r-sm: 12px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }

body {
  background: var(--bg0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); letter-spacing: -0.02em; font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; display: block; }

::selection { background: rgba(111, 210, 74, 0.35); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
section { padding: clamp(3.4rem, 8vw, 6.5rem) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px;
}

.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }

/* --------------------------------------------------------------------------
   Night sky + aurora (fixed backdrop, animated blobs)
   -------------------------------------------------------------------------- */

.sky {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(124, 108, 240, 0.16), transparent 60%),
    radial-gradient(900px 480px at 8% 12%, rgba(45, 212, 167, 0.10), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0) 55%);
}
/* stjörnur - tvö lög af örsmáum punktum, mishratt tindrandi */
.sky::before, .sky::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, rgba(255,255,255,0.8), transparent 55%),
    radial-gradient(1px 1px at 33% 9%,  rgba(255,255,255,0.65), transparent 55%),
    radial-gradient(1.2px 1.2px at 56% 30%, rgba(255,255,255,0.7), transparent 55%),
    radial-gradient(1px 1px at 71% 14%, rgba(255,255,255,0.6), transparent 55%),
    radial-gradient(1.4px 1.4px at 87% 34%, rgba(255,255,255,0.75), transparent 55%),
    radial-gradient(1px 1px at 24% 44%, rgba(255,255,255,0.5), transparent 55%),
    radial-gradient(1.2px 1.2px at 44% 55%, rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(1px 1px at 92% 58%, rgba(255,255,255,0.5), transparent 55%),
    radial-gradient(1.2px 1.2px at 64% 72%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(1px 1px at 8% 78%,  rgba(255,255,255,0.4), transparent 55%);
  animation: tindra 5.5s ease-in-out infinite;
}
.sky::after {
  transform: translate(2.5%, 4%) scale(1.15);
  animation-duration: 8s; animation-delay: -3s; opacity: 0.6;
}
@keyframes tindra {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.35; }
}

.aurora { position: absolute; inset: 0; overflow: hidden; z-index: -1; pointer-events: none; }
.aurora i {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.5; mix-blend-mode: screen;
  will-change: transform;
}
.aurora i:nth-child(1) {
  width: 55vw; height: 34vh; left: -8vw; top: 4vh;
  background: radial-gradient(closest-side, rgba(55, 179, 74, 0.55), transparent);
  animation: svif1 26s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  width: 44vw; height: 30vh; right: -6vw; top: 12vh;
  background: radial-gradient(closest-side, rgba(45, 212, 167, 0.5), transparent);
  animation: svif2 32s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  width: 38vw; height: 26vh; left: 28vw; top: -6vh;
  background: radial-gradient(closest-side, rgba(124, 108, 240, 0.42), transparent);
  animation: svif3 38s ease-in-out infinite alternate;
}
@keyframes svif1 { to { transform: translate(9vw, 7vh) rotate(14deg) scale(1.12); } }
@keyframes svif2 { to { transform: translate(-7vw, 9vh) rotate(-10deg) scale(1.06); } }
@keyframes svif3 { to { transform: translate(5vw, 11vh) rotate(8deg) scale(1.18); } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
header.site.scrolled {
  background: rgba(7, 11, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 2rem; width: 100%; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--text); }
.brand img { height: 40px; width: auto; }
.brand b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }
.brand-merki { height: 52px; width: auto; display: block; }
footer.site .brand-merki { height: 68px; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; align-items: center; }
.nav-links a { color: var(--text); font-weight: 500; font-size: 0.95rem; opacity: 0.85; position: relative; }
.nav-links a:hover { opacity: 1; color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px; transition: right 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.7rem; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  background: var(--grad); color: #06220b;
  box-shadow: var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); color: #06220b; box-shadow: 0 16px 46px -12px rgba(111, 210, 74, 0.65); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05); color: var(--text);
  border: 1px solid var(--line); box-shadow: none;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--text); box-shadow: none; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4.5rem;
  position: relative;
}
.hero-inner { max-width: 780px; }
.hero .lead { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.trust { display: flex; gap: 1.8rem; flex-wrap: wrap; align-items: center; }
.trust .t {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--muted); font-size: 0.92rem; font-weight: 500;
}
.trust .t svg { flex: 0 0 auto; }
.stars { color: #ffce4a; letter-spacing: 2px; font-size: 0.95rem; }

.hero-sub { position: relative; z-index: 1; }

/* mjúk hreyfing niður-ör */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.25); border-radius: 14px;
}
.scroll-hint::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 3px; background: var(--green);
  animation: hjol 1.8s ease-in-out infinite;
}
@keyframes hjol { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0.95rem 0; overflow: hidden; position: relative;
  background: rgba(255, 255, 255, 0.02);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-inner { display: flex; gap: 3.2rem; width: max-content; animation: skrun 34s linear infinite; }
.marquee:hover .marquee-inner { animation-play-state: paused; }
.marquee span { display: flex; align-items: center; gap: 0.7rem; color: var(--muted); font-size: 0.95rem; white-space: nowrap; font-weight: 500; }
.marquee b { color: var(--green); font-weight: 400; }
@keyframes skrun { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */

.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tour-card {
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
}
.tour-card:hover {
  transform: translateY(-7px);
  border-color: rgba(111, 210, 74, 0.45);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(111, 210, 74, 0.12);
}
.tour-card .pic { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tour-card .pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.tour-card:hover .pic img { transform: scale(1.07); }
.tour-card .pic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 9, 15, 0.85));
}
.price-chip {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  background: rgba(6, 9, 15, 0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(111, 210, 74, 0.5);
  color: var(--green); font-weight: 600; font-size: 0.85rem;
  border-radius: 999px; padding: 0.3rem 0.85rem;
}
/* Slagorðsmerki ofan á mynd túrsins ("HOT", "NEW" ...), stillt á Vörusíðunni.
   Situr efst til vinstri - verðmerkið á móti því hægra megin. */
.merki {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 3;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.34rem 0.8rem; border-radius: 999px; color: #0b0f14;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.8);
}
.merki.heitt { background: linear-gradient(135deg, #ff8a3d, #ff4d4d); color: #fff; }
.merki.nytt  { background: var(--grad); }
.merki.gyllt { background: linear-gradient(135deg, #ffd76a, #f5a623); }
.merki.stor {
  top: clamp(1rem, 3vw, 1.6rem); left: clamp(1.2rem, 4vw, 2.6rem);
  font-size: 0.9rem; padding: 0.45rem 1.05rem;
}

.tour-card .body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tour-card h3 { margin-bottom: 0.4rem; }
.tour-card .meta { display: flex; gap: 1.1rem; color: var(--muted); font-size: 0.85rem; margin-bottom: 0.7rem; }
.tour-card .meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.tour-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.tour-card .go {
  margin-top: 1rem; font-weight: 600; font-size: 0.95rem; color: var(--green);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.tour-card .go .arr { transition: transform 0.25s; }
.tour-card:hover .go .arr { transform: translateX(5px); }
.tour-card > a.cover { position: absolute; inset: 0; z-index: 3; }

/* why-us */
.feature {
  padding: 1.9rem 1.7rem;
  transition: transform 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(111, 210, 74, 0.4); }
.feature .ikon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111, 210, 74, 0.12); border: 1px solid rgba(111, 210, 74, 0.3);
  margin-bottom: 1.1rem;
}
.feature p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: center;
}
.stat .n {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .l { color: var(--muted); font-size: 0.92rem; margin-top: 0.2rem; }

/* --------------------------------------------------------------------------
   Reviews carousel (scroll snap)
   -------------------------------------------------------------------------- */

.reviews {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.2rem 1.4rem; scrollbar-width: thin;
  scrollbar-color: rgba(111,210,74,0.5) transparent;
}
.review {
  min-width: min(420px, 84vw); scroll-snap-align: start;
  padding: 1.7rem 1.7rem 1.5rem;
}
.review .txt { font-size: 1.02rem; color: var(--text); font-style: italic; }
.review .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.review .who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad); color: #06220b; font-weight: 700; font-family: var(--font-display);
}
.review .who .nm { font-weight: 600; font-size: 0.95rem; }
.review .who .fr { color: var(--muted); font-size: 0.82rem; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */

.cta-banner {
  border-radius: calc(var(--r) + 6px); overflow: hidden; position: relative;
  padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.6rem, 5vw, 4rem);
  border: 1px solid rgba(111, 210, 74, 0.3);
  background:
    linear-gradient(100deg, rgba(6, 9, 15, 0.92) 30%, rgba(6, 9, 15, 0.55)),
    var(--cta-mynd, none) center / cover;
}
.cta-banner h2 { max-width: 560px; }
.cta-banner p { max-width: 520px; color: var(--muted); margin-bottom: 1.6rem; }

/* --------------------------------------------------------------------------
   Tour detail
   -------------------------------------------------------------------------- */

.tour-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3rem;
}
.tour-hero .pic {
  border-radius: calc(var(--r) + 6px); overflow: hidden; position: relative;
  aspect-ratio: 21 / 9; border: 1px solid var(--line);
}
.tour-hero .pic img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero .pic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 9, 15, 0.88));
}
.tour-hero .over {
  position: absolute; left: clamp(1.2rem, 4vw, 2.6rem); right: clamp(1.2rem, 4vw, 2.6rem); bottom: clamp(1rem, 3.5vw, 2.2rem);
  z-index: 2; display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1rem; justify-content: space-between;
}
.chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.chip {
  background: rgba(6, 9, 15, 0.66); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--text);
  padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.chip.green { border-color: rgba(111, 210, 74, 0.5); color: var(--green); }

.tour-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.6rem; align-items: start; }
.tour-desc { font-size: 1.05rem; color: #c8d2df; }
.tour-desc p { margin-bottom: 1.2em; }

.hl { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.hl li { display: flex; gap: 0.7rem; align-items: flex-start; color: #c8d2df; }
.hl li::before {
  content: "✓"; flex: 0 0 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(111, 210, 74, 0.15); color: var(--green);
  font-size: 0.8rem; font-weight: 700; margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Booking form
   -------------------------------------------------------------------------- */

.book-card { padding: 1.8rem 1.7rem; position: sticky; top: calc(var(--header-h) + 1.2rem); }
.book-card h3 { display: flex; justify-content: space-between; align-items: baseline; }
.book-card .verd { font-family: var(--font-display); color: var(--green); }
.book-card .verd small { color: var(--muted); font-family: var(--font-body); font-weight: 400; }

label { display: block; margin: 1rem 0 0.35rem; font-weight: 600; font-size: 0.88rem; }
input, select, textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--font-body); font-size: 0.97rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: rgba(111, 210, 74, 0.65);
  box-shadow: 0 0 0 3px rgba(111, 210, 74, 0.16);
  background: rgba(255, 255, 255, 0.07);
}
input[type="date"], input[type="time"] { color-scheme: dark; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* Áttarval flugvallarferðarinnar */
.dir { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.dir label {
  margin: 0; display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.62rem 0.5rem; text-align: center; font-size: 0.85rem; cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: background 0.2s, border-color 0.2s;
}
.dir label.on { background: rgba(111, 210, 74, 0.15); border-color: rgba(111, 210, 74, 0.5); }
.dir input { width: auto; padding: 0; accent-color: var(--green); }

/* Leiðaval: einn dálkur, heiti vinstra megin og verð hægra. [hidden] þarf
   að yfirstýra display:grid hér að ofan (ein leið = ekkert val að taka). */
.dir[hidden] { display: none; }
.dir.stakur { grid-template-columns: 1fr; }
.dir.stakur label { justify-content: flex-start; text-align: left; padding: 0.7rem 0.85rem; }
.dir.stakur .leid-heiti { flex: 1; }
.dir.stakur .leid-verd { color: var(--green); font-weight: 600; white-space: nowrap; font-size: 0.83rem; }

input[readonly] { color: var(--muted); cursor: default; }
input[readonly]:focus {
  border-color: var(--line); box-shadow: none; background: rgba(255, 255, 255, 0.045);
}

.pax { display: flex; align-items: center; gap: 0.6rem; }
.pax button {
  width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05); color: var(--text); font-size: 1.15rem; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pax button:hover { background: rgba(111, 210, 74, 0.15); border-color: rgba(111, 210, 74, 0.5); }
.pax input { text-align: center; max-width: 70px; }

.total-line {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px dashed var(--line);
  font-weight: 600;
}
.total-line .upph { font-family: var(--font-display); font-size: 1.35rem; color: var(--green); }
.book-card .btn { width: 100%; margin-top: 1.2rem; }
.secure {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  color: var(--muted); font-size: 0.8rem; margin-top: 0.85rem;
}

/* --------------------------------------------------------------------------
   Fleet
   -------------------------------------------------------------------------- */

.car-card { overflow: hidden; }
.car-card .pic { aspect-ratio: 16 / 9; background: #fff; display: flex; align-items: center; justify-content: center; }
.car-card .pic img { object-fit: contain; max-height: 100%; transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1); }
.car-card:hover .pic img { transform: scale(1.05); }
.car-card .body { padding: 1.3rem 1.4rem 1.5rem; }
.car-card .tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.7rem; }
.tag {
  font-size: 0.78rem; padding: 0.22rem 0.7rem; border-radius: 999px;
  background: rgba(111, 210, 74, 0.1); color: var(--green);
  border: 1px solid rgba(111, 210, 74, 0.28); font-weight: 500;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

details.faq {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); margin-bottom: 0.8rem;
  transition: border-color 0.25s;
}
details.faq[open] { border-color: rgba(111, 210, 74, 0.4); }
details.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.3rem;
  font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--green); transition: transform 0.3s; line-height: 1;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .a { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   Contact / misc pages
   -------------------------------------------------------------------------- */

.page-hero { padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem)); padding-bottom: clamp(1.5rem, 4vw, 3rem); }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-card { padding: 1.6rem; text-align: center; }
.contact-card .ikon { margin: 0 auto 0.9rem; }

.flash-msgs { position: fixed; top: calc(var(--header-h) + 0.8rem); left: 50%; transform: translateX(-50%); z-index: 90; width: min(560px, 92vw); }
.flash {
  padding: 0.9rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 0.6rem;
  background: var(--surface-solid); border: 1px solid var(--line);
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.9);
  animation: flass-inn 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
  font-size: 0.95rem;
}
.flash.error { border-color: rgba(226, 72, 63, 0.6); }
.flash.warning { border-color: rgba(255, 201, 60, 0.55); }
.flash.success { border-color: rgba(111, 210, 74, 0.55); }
@keyframes flass-inn { from { opacity: 0; transform: translateY(-12px); } }

/* success / cancelled */
.result-wrap { max-width: 660px; margin: 0 auto; text-align: center; }
.result-wrap .big-ikon {
  width: 92px; height: 92px; margin: 0 auto 1.6rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(111, 210, 74, 0.12); border: 1px solid rgba(111, 210, 74, 0.45);
  animation: pulsa 2.4s ease-in-out infinite;
}
.result-wrap .big-ikon.warn { background: rgba(255, 201, 60, 0.1); border-color: rgba(255, 201, 60, 0.4); animation: none; }
@keyframes pulsa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 210, 74, 0.35); }
  50% { box-shadow: 0 0 0 18px rgba(111, 210, 74, 0); }
}
.summary {
  text-align: left; margin: 1.8rem 0; padding: 1.4rem 1.6rem;
}
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.45rem 1.4rem; margin: 0; }
.summary dt { color: var(--muted); font-size: 0.9rem; }
.summary dd { margin: 0; font-weight: 500; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

footer.site {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2.4rem; margin-top: 2rem;
  background: rgba(255, 255, 255, 0.015);
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.4rem; }
.foot h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot a { color: var(--text); opacity: 0.8; font-size: 0.95rem; }
.foot a:hover { opacity: 1; color: var(--green); }
.foot .blurb { color: var(--muted); font-size: 0.93rem; max-width: 300px; }
.foot-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Scroll-reveal
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.galleri { columns: 3; column-gap: 1.2rem; }
.galleri-mynd { break-inside: avoid; margin: 0 0 1.2rem; }
.galleri-mynd button {
  display: block; width: 100%; padding: 0; border: 1px solid var(--line);
  border-radius: var(--r-sm); overflow: hidden; cursor: zoom-in;
  background: none; line-height: 0;
}
.galleri-mynd img { width: 100%; height: auto; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1); }
.galleri-mynd button:hover img { transform: scale(1.04); }
.galleri-mynd figcaption { color: var(--muted); font-size: 0.85rem; margin-top: 0.45rem; line-height: 1.4; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.8rem; padding: 2.5rem 1rem 1.5rem;
  background: rgba(4, 7, 12, 0.94); backdrop-filter: blur(10px); cursor: zoom-out;
}
.lightbox img { max-width: min(1100px, 96vw); max-height: 84vh; border-radius: var(--r-sm); }
.lightbox .texti { color: var(--muted); font-size: 0.95rem; text-align: center; }
.lightbox .loka {
  position: absolute; top: 1rem; right: 1.2rem; background: none; border: 0;
  color: var(--text); font-size: 2rem; line-height: 1; cursor: pointer; opacity: 0.7;
}
.lightbox .loka:hover { opacity: 1; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .galleri { columns: 2; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tour-cols { grid-template-columns: 1fr; }
  .book-card { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .galleri { columns: 1; }
  .grid-3, .grid-2, .contact-cards { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(7, 11, 18, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    margin: 0; padding: 0 1.4rem;
  }
  .nav-links.open { max-height: 420px; padding-bottom: 1.2rem; }
  .nav-links a { padding: 0.85rem 0; width: 100%; font-size: 1.05rem; }
  .nav-links .btn { margin-top: 0.6rem; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle i { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; display: block; }
  .nav-toggle.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open i:nth-child(2) { opacity: 0; }
  .nav-toggle.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

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