/* ═══════════════════════════════════════════════════════════════════
   RENTAŠI — GLOBALNI STYLE.CSS
   Mobile-first · Pokriva sve 8 stranica · Jedan HTTP zahtjev
   Fontovi: Fredoka (naslovi/nav) + Nunito (tijelo)
   ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  --blue:    #0077b6;
  --blue-dk: #00243f;
  --sky:     #48cae4;
  --sky-lt:  #e7f1ff;
  --orange:  #ff9f1c;
  --yellow:  #fed707;
  --white:   #ffffff;
  --off:     #f8f9fa;
  --text:    #4a4a4a;
  --muted:   #6b7280;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --pill: 100px;

  --s1: 0 4px 16px rgba(0,80,140,.08);
  --s2: 0 12px 32px rgba(0,80,140,.13);
  --s3: 0 24px 56px rgba(0,30,60,.16);
  --s4: 0 40px 80px rgba(0,30,60,.20);

  --ease: cubic-bezier(.25,.8,.25,1);
  --t:    all .35s var(--ease);

  --fh: 'Fredoka', sans-serif;
  --fb: 'Nunito', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--fb); color: var(--text); background: var(--white);
        overflow-x: hidden; -webkit-font-smoothing: antialiased; width: 100%; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--fb); cursor: pointer; }
table  { border-collapse: collapse; width: 100%; }

/* ── TIPOGRAFIJA ─────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.18; color: var(--blue); }
h1 { font-size: clamp(2rem, 5.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 600; }
p  { line-height: 1.8; font-size: clamp(.93rem, 1.4vw, 1.04rem); }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.sec  { padding: 84px 0; position: relative; }

/* ── SECTION HEADER ──────────────────────────────────────────────── */
.sh { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.pretag {
  display: inline-block; font-family: var(--fh); font-size: .78rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); background: rgba(255,159,28,.1);
  padding: 5px 13px; border-radius: var(--pill); margin-bottom: 11px;
}
.sh p { margin-top: 10px; color: var(--muted); font-size: 1.02rem; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fh); font-weight: 600; font-size: 1rem;
  padding: 14px 30px; border-radius: var(--pill);
  border: 2px solid transparent; transition: var(--t); white-space: nowrap;
}
.btn-y { background: var(--yellow); color: var(--blue); box-shadow: 0 6px 20px rgba(254,215,7,.38); }
.btn-y:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.btn-o { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-o:hover { background: var(--white); color: var(--blue); transform: translateY(-3px); }
.btn-g { background: var(--white); color: var(--blue); box-shadow: var(--s1); }
.btn-g:hover { background: var(--sky-lt); transform: translateY(-3px); box-shadow: var(--s2); }
.btn-b { background: var(--blue); color: var(--white); box-shadow: var(--s2); }
.btn-b:hover { background: var(--blue-dk); transform: translateY(-3px); box-shadow: var(--s3); }

/* ── PLACEHOLDER (slika još nije uploadana) ──────────────────────── */
.ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(145deg, var(--sky-lt), #c8dff5);
  color: var(--blue); font-family: var(--fh); font-size: .78rem;
  letter-spacing: .04em;
}
.ph svg {
  width: 42px; height: 42px; stroke: var(--blue); stroke-width: 1.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round; opacity: .45;
}

/* ── WAVE TRANZICIJA ─────────────────────────────────────────────── */
.wv { display: block; width: 100%; overflow: hidden; line-height: 0; flex-shrink: 0; }
.wv svg { display: block; width: 100%; height: 52px; }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }


/* ══════════════════════════════════════════════════════════════════
   HEADER & NAV
   ══════════════════════════════════════════════════════════════════ */

#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .3s, box-shadow .3s;
}
#hdr.sc {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 18px rgba(0,30,60,.09);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1160px; margin: 0 auto; padding: 0 20px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--fh); font-size: 1.35rem; font-weight: 700;
  color: var(--white); transition: color .3s;
}
#hdr.sc .logo { color: var(--blue); }
.logo-dot {
  width: 32px; height: 32px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(254,215,7,.4);
}
.logo-dot svg {
  width: 16px; height: 16px; stroke: var(--blue-dk); stroke-width: 2.2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* Desktop navigacija */
.nav-l { display: flex; align-items: center; gap: 2px; }
.nav-l a {
  font-family: var(--fh); font-weight: 600; font-size: .88rem;
  padding: 7px 10px; border-radius: var(--r-sm);
  color: rgba(255,255,255,.88); transition: var(--t);
}
#hdr.sc .nav-l a { color: var(--text); }
.nav-l a:hover,
.nav-l a.active { color: var(--white) !important; background: var(--blue); }
#hdr.sc .nav-l a:hover,
#hdr.sc .nav-l a.active { color: var(--white) !important; }
.nav-l .ig { padding: 7px 8px; display: inline-flex; align-items: center; }
.nav-l .ig svg {
  width: 17px; height: 17px; stroke: currentColor; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.nav-book {
  font-family: var(--fh); font-weight: 700; font-size: .86rem;
  padding: 8px 18px; background: var(--yellow); color: var(--blue) !important;
  border-radius: var(--pill); box-shadow: 0 4px 14px rgba(254,215,7,.4);
  transition: var(--t); margin-left: 4px;
}
.nav-book:hover { background: var(--orange) !important; color: var(--white) !important; transform: translateY(-2px); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--t);
}
#hdr.sc .burger span { background: var(--blue); }

/* Mobile drawer */
.mob {
  display: none; position: fixed; inset: 0; background: var(--blue-dk); z-index: 890;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 40px 20px;
}
.mob.open { display: flex; }
.mob a {
  font-family: var(--fh); font-weight: 600; font-size: 1.45rem;
  color: rgba(255,255,255,.85); padding: 8px 0; transition: color .2s; text-align: center;
}
.mob a:hover { color: var(--yellow); }
.mob .mb {
  margin-top: 14px; background: var(--yellow); color: var(--blue) !important;
  padding: 12px 36px; border-radius: var(--pill); font-size: 1.1rem;
}
.mob-x {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,.55);
  font-size: 2rem; cursor: pointer; line-height: 1;
}


/* ══════════════════════════════════════════════════════════════════
   HERO — NASLOVNA (velika, full-screen)
   ══════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100svh; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 20px 60px; position: relative;
  background:
    linear-gradient(180deg, rgba(0,18,42,.54) 0%, rgba(0,55,95,.44) 100%),
    url('images/hero.jpg') center / cover no-repeat;
  background-color: var(--blue);
}
.hero-in { position: relative; z-index: 2; max-width: 760px; width: 100%; }
.hero-pill {
  display: inline-block; font-family: var(--fh); font-size: .82rem;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow); background: rgba(254,215,7,.13);
  border: 1px solid rgba(254,215,7,.28); padding: 6px 16px;
  border-radius: var(--pill); margin-bottom: 18px;
}
.hero h1 { color: var(--white); text-shadow: 0 3px 18px rgba(0,0,0,.28); margin-bottom: 14px; }
.hero-sub {
  font-size: clamp(.97rem, 1.8vw, 1.14rem); color: rgba(255,255,255,.86);
  max-width: 540px; margin: 0 auto 32px; line-height: 1.72;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── HERO — UNUTARNJE STRANICE (manja visina) ────────────────────── */
.hero-inner {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 130px 20px 90px; position: relative;
  background:
    linear-gradient(180deg, rgba(0,18,42,.58) 0%, rgba(0,55,95,.48) 100%),
    url('') center / cover no-repeat;
  background-color: var(--blue);
}
.hero-inner .hero-in { max-width: 820px; }
.hero-inner .breadcrumb { margin-bottom: 20px; }
.hero-inner .hero-pill { margin-bottom: 32px; }
.hero-inner h1 { margin-bottom: 32px; }
.hero-inner .hero-sub { margin-bottom: 52px; }

/* Per-page hero slike — dodaju se inline ili specifičnom classnom */
.hero-boat      { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-boat.jpg'); }
.hero-sup       { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-sup.jpg'); }
.hero-kayak     { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-kayak.jpg'); }
.hero-pedal     { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-pedal.jpg'); }
.hero-sunset    { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-sunset.jpg'); }
.hero-instruct  { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-instructions.jpg'); }
.hero-contact   { background-image: linear-gradient(180deg,rgba(0,18,42,.58) 0%,rgba(0,55,95,.48) 100%), url('images/hero-contact.jpg'); }


/* ══════════════════════════════════════════════════════════════════
   WELCOME CARD (naslovna ispod heroja)
   ══════════════════════════════════════════════════════════════════ */

.wc-wrap { background: var(--off); padding: 0 20px 80px; }
.wc {
  max-width: 820px; margin: -40px auto 0; position: relative; z-index: 5;
  background: var(--white); border-radius: var(--r-lg);
  padding: 48px 44px; box-shadow: var(--s4);
  border-top: 5px solid var(--orange); text-align: center;
}
.wc h2 { color: var(--orange); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.wc-lead {
  font-size: clamp(.99rem, 1.6vw, 1.11rem); font-weight: 600;
  color: var(--blue); line-height: 1.68; margin-bottom: 12px;
}
.wc p { color: var(--muted); margin-bottom: 6px; }


/* ══════════════════════════════════════════════════════════════════
   SERVICES GRID (naslovna + ostale stranice)
   ══════════════════════════════════════════════════════════════════ */

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--s1); border: 1.5px solid rgba(0,119,182,.06);
  transition: var(--t); display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--s3); border-color: rgba(72,202,228,.2); }
.svc-img { position: relative; height: 196px; overflow: hidden; background: var(--sky-lt); flex-shrink: 0; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 22px 20px 18px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { margin-bottom: 7px; color: var(--blue); }
.svc-body p { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: 15px; }
.svc-lnk {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--fh); font-weight: 600; font-size: .92rem;
  color: var(--orange); transition: var(--t);
}
.svc-lnk .ar { transition: transform .25s; }
.svc:hover .svc-lnk { color: var(--blue); gap: 9px; }
.svc:hover .svc-lnk .ar { transform: translateX(3px); }


/* ══════════════════════════════════════════════════════════════════
   STORY + STAT GRID
   ══════════════════════════════════════════════════════════════════ */

.story-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-text h2 { margin-bottom: 18px; }
.story-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.82; }
.story-text strong { color: var(--blue); }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.stat-b {
  background: var(--off); border-radius: var(--r-md); padding: 24px 16px;
  text-align: center; border-bottom: 4px solid var(--sky); transition: var(--t);
}
.stat-b:hover { transform: translateY(-5px); border-bottom-color: var(--orange); box-shadow: var(--s2); background: var(--white); }
.stat-n { font-family: var(--fh); font-size: 2.7rem; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-n em { color: var(--orange); font-style: normal; }
.stat-lb { font-size: .84rem; font-weight: 600; color: var(--muted); line-height: 1.45; }


/* ══════════════════════════════════════════════════════════════════
   WHY US (sky-lt pozadina)
   ══════════════════════════════════════════════════════════════════ */

.sec-why { background: var(--sky-lt); padding: 84px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.why-it {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border-radius: var(--r-md);
  padding: 20px 17px; box-shadow: var(--s1); transition: var(--t);
}
.why-it:hover { box-shadow: var(--s2); transform: translateX(4px); }
.why-ico {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: var(--sky-lt); display: flex; align-items: center;
  justify-content: center; transition: var(--t);
}
.why-ico svg {
  width: 18px; height: 18px; stroke: var(--blue); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.why-it:hover .why-ico { background: var(--yellow); transform: rotate(8deg) scale(1.08); }
.why-it:hover .why-ico svg { stroke: var(--blue-dk); }
.why-it p { font-size: .92rem; line-height: 1.7; }


/* ══════════════════════════════════════════════════════════════════
   LOCAL / VODICE SECTION (plava pozadina)
   ══════════════════════════════════════════════════════════════════ */

.sec-loc { background: var(--blue); padding: 84px 0; }
.loc-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.loc-text h2 { color: var(--yellow); margin-bottom: 18px; line-height: 1.22; }
.loc-text p { color: rgba(255,255,255,.82); margin-bottom: 13px; line-height: 1.82; }
.loc-text strong { color: var(--white); }
.pull {
  margin-top: 24px; padding: 14px 18px; background: rgba(255,255,255,.09);
  border-left: 4px solid var(--yellow); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.pull p { font-family: var(--fh); font-size: 1.08rem; color: var(--white) !important; margin: 0; font-style: italic; }
.loc-img {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--s4);
  aspect-ratio: 4/5; background: #00456e; position: relative;
}
.loc-img img { width: 100%; height: 100%; object-fit: cover; }



/* Horizontalna TC kartica (Niko / Luka) — desktop 2-col, mobile stack */
.tc-horizontal {
  display: grid;
  grid-template-columns: 280px 1fr;
}
.tc-horizontal .tc-img { min-height: 280px; height: auto; }

@media (max-width: 700px) {
  .tc-horizontal {
    grid-template-columns: 1fr;
  }
  .tc-horizontal .tc-img { min-height: 260px; height: 260px; }
}
/* ══════════════════════════════════════════════════════════════════
   TEAM CARDS
   ══════════════════════════════════════════════════════════════════ */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tc {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--s1); border: 1.5px solid rgba(0,119,182,.05); transition: var(--t);
}
.tc:hover { transform: translateY(-8px); box-shadow: var(--s3); }
.tc-img { position: relative; height: 265px; overflow: hidden; background: var(--sky-lt); }
.tc-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  transition: transform .7s var(--ease);
}
.tc:hover .tc-img img { transform: scale(1.05); }
.tc-badge {
  position: absolute; bottom: 11px; left: 11px; background: var(--yellow);
  color: var(--blue); font-family: var(--fh); font-weight: 700; font-size: .72rem;
  padding: 4px 11px; border-radius: var(--pill);
  box-shadow: 0 3px 10px rgba(0,0,0,.12); transition: var(--t);
}
.tc:hover .tc-badge { background: var(--orange); color: var(--white); }
.tc-body { padding: 21px; }
.tc-body h3 { margin-bottom: 7px; }
.tc-body p { color: var(--muted); font-size: .92rem; margin-bottom: 5px; }
.tc-body em { color: var(--text); font-style: italic; }
.sp {
  margin-top: 13px; padding: 11px 14px; background: var(--sky-lt);
  border-left: 4px solid var(--sky); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  transition: var(--t);
}
.tc:hover .sp { background: var(--off); border-left-color: var(--orange); }
.sp strong { display: block; font-family: var(--fh); font-size: .78rem; color: var(--blue); margin-bottom: 3px; }
.sp span { font-size: .87rem; color: var(--text); }


/* ══════════════════════════════════════════════════════════════════
   CTA BOX
   ══════════════════════════════════════════════════════════════════ */

.cta-box {
  background: var(--blue); border-radius: var(--r-lg); padding: 68px 36px;
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--s4);
  background-image:
    radial-gradient(ellipse at top right, rgba(72,202,228,.2) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0,20,50,.45) 0%, transparent 55%);
}
.cta-box h2 { color: var(--white); margin-bottom: 13px; }
.cta-box > p {
  color: rgba(255,255,255,.8); font-size: 1.04rem;
  max-width: 540px; margin: 0 auto 32px; line-height: 1.78;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-tl {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  font-family: var(--fh); font-size: .95rem;
  color: rgba(255,255,255,.28); letter-spacing: .08em;
}


/* ══════════════════════════════════════════════════════════════════
   UNUTARNJE STRANICE — BOAT / INTRO SEKCIJA
   ══════════════════════════════════════════════════════════════════ */

/* Intro tekst sa ikonom (za sve unutarnje stranice) */
.intro-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.intro-text h2 { margin-bottom: 16px; }
.intro-text p { color: var(--muted); margin-bottom: 13px; line-height: 1.82; }
.intro-text blockquote {
  margin-top: 20px; padding: 14px 18px;
  background: var(--sky-lt); border-left: 4px solid var(--sky);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--fh); font-size: 1.02rem;
  color: var(--blue); font-style: italic;
}
.intro-img {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--sky-lt); box-shadow: var(--s3);
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }


/* ══════════════════════════════════════════════════════════════════
   BOAT CARDS (za rent-a-boat stranicu)
   ══════════════════════════════════════════════════════════════════ */

.boat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.boat-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--s2); border: 1.5px solid rgba(0,119,182,.07);
  display: flex; flex-direction: column; transition: var(--t);
}
.boat-card:hover { box-shadow: var(--s3); transform: translateY(-4px); }
.boat-card.rev { flex-direction: column; }
.boat-card.rev .boat-img { order: 0; }
.boat-card.rev .boat-body { order: 0; }
.boat-img { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--sky-lt); flex-shrink: 0; }
.boat-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform .7s var(--ease); }
.boat-card:hover .boat-img img { transform: scale(1.04); }
.boat-badge {
  position: absolute; top: 14px; left: 14px; background: var(--yellow);
  color: var(--blue); font-family: var(--fh); font-weight: 700; font-size: .73rem;
  padding: 4px 12px; border-radius: var(--pill); box-shadow: var(--s1);
}
.boat-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.boat-tagline { font-family: var(--fh); font-size: .95rem; color: var(--muted); margin-bottom: 10px; font-style: italic; }
.boat-body h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 12px; }
.boat-body p { color: var(--muted); margin-bottom: 14px; line-height: 1.78; }
.boat-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin: 16px 0; padding: 16px; background: var(--off);
  border-radius: var(--r-md);
}
.boat-spec { display: flex; flex-direction: column; }
.boat-spec-lbl { font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); margin-bottom: 3px; }
.boat-spec-val { font-family: var(--fh); font-size: .98rem; color: var(--blue); font-weight: 600; }
.boat-price { font-family: var(--fh); font-size: 1.55rem; font-weight: 700; color: var(--blue); margin: 14px 0 6px; }
.boat-price small { font-size: .78rem; color: var(--muted); font-family: var(--fb); font-weight: 400; }
.boat-islands { font-size: .86rem; color: var(--muted); margin-bottom: 20px; }
.boat-islands strong { color: var(--text); }
.boat-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }


/* ══════════════════════════════════════════════════════════════════
   BOAT CHOOSER (koji brod je za vas)
   ══════════════════════════════════════════════════════════════════ */

.chooser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.chooser-it {
  background: var(--white); border-radius: var(--r-md);
  padding: 24px 20px; box-shadow: var(--s1);
  border-top: 4px solid var(--sky); transition: var(--t);
  display: flex; flex-direction: column; gap: 8px;
}
.chooser-it:hover { transform: translateY(-5px); box-shadow: var(--s2); border-top-color: var(--orange); }
.chooser-emoji { font-size: 1.8rem; margin-bottom: 4px; }
.chooser-it h3 { font-size: 1.1rem; margin-bottom: 4px; }
.chooser-it p { color: var(--muted); font-size: .9rem; flex: 1; }
.chooser-rec { font-family: var(--fh); font-size: .88rem; color: var(--orange); font-weight: 600; }


/* ══════════════════════════════════════════════════════════════════
   ISLANDS / DESTINACIJE
   ══════════════════════════════════════════════════════════════════ */

.islands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.island-it {
  background: var(--white); border-radius: var(--r-md);
  padding: 24px 20px; box-shadow: var(--s1);
  border-left: 4px solid transparent; transition: var(--t);
}
.island-it:hover { border-left-color: var(--sky); box-shadow: var(--s2); transform: translateX(4px); }
.island-it h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.island-it p { color: var(--muted); font-size: .9rem; line-height: 1.65; }
.island-it em { display: block; margin-top: 8px; font-size: .82rem; color: var(--blue); font-style: normal; font-weight: 600; }

/* Blockquote generalni */
.bq {
  margin: 28px 0; padding: 18px 22px;
  background: var(--sky-lt); border-left: 4px solid var(--sky);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--fh); font-size: 1.02rem;
  color: var(--blue); font-style: italic; line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS — KORACI
   ══════════════════════════════════════════════════════════════════ */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 22px; box-shadow: var(--s1);
  border-bottom: 4px solid var(--sky); transition: var(--t);
  position: relative;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--s2); border-bottom-color: var(--orange); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: var(--fh); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .89rem; line-height: 1.65; }


/* ══════════════════════════════════════════════════════════════════
   PRICING TABLES
   ══════════════════════════════════════════════════════════════════ */

.price-table {
  width: 100%; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--s1); margin: 20px 0;
}
.price-table thead { background: var(--blue); }
.price-table thead th {
  color: var(--white); font-family: var(--fh); font-size: .95rem;
  padding: 14px 20px; text-align: left;
}
.price-table tbody tr { border-bottom: 1px solid rgba(0,119,182,.07); transition: background .2s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--sky-lt); }
.price-table td { padding: 13px 20px; font-size: .95rem; }
.price-table td:last-child { font-family: var(--fh); font-weight: 600; color: var(--blue); }
.price-table tbody tr:nth-child(even) { background: var(--off); }
.price-table tbody tr:nth-child(even):hover { background: var(--sky-lt); }

/* Pricing grid (2 tablice side by side) */
.price-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.price-block h3 { margin-bottom: 14px; }
.price-highlight {
  background: var(--off); border-radius: var(--r-md); padding: 22px 24px;
  border: 2px solid rgba(0,119,182,.1); margin: 18px 0;
}
.price-highlight h3 { margin-bottom: 16px; color: var(--blue); }
.inc-list { display: flex; flex-direction: column; gap: 8px; }
.inc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: var(--text); line-height: 1.55;
}
.inc-list li::before {
  content: '✓'; color: var(--blue); font-weight: 700;
  font-family: var(--fh); flex-shrink: 0; margin-top: 1px;
}
.exc-list li::before { content: '✗'; color: var(--muted); }


/* ══════════════════════════════════════════════════════════════════
   DEPOSIT / SECURITY TABLE
   ══════════════════════════════════════════════════════════════════ */

.dep-table {
  width: 100%; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--s1); margin-bottom: 24px;
}
.dep-table th {
  background: var(--off); font-family: var(--fh); font-size: .88rem;
  color: var(--text); padding: 11px 18px; text-align: left;
  text-transform: uppercase; letter-spacing: .08em;
}
.dep-table td { padding: 12px 18px; font-size: .93rem; border-bottom: 1px solid rgba(0,119,182,.06); }
.dep-table tr:last-child td { border-bottom: none; }
.dep-table td:last-child { font-family: var(--fh); font-weight: 600; color: var(--orange); }


/* ══════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════════════ */

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-it {
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--s1); overflow: hidden;
  border: 1.5px solid rgba(0,119,182,.06);
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  font-family: var(--fh); font-size: 1.04rem; font-weight: 600;
  color: var(--blue); cursor: pointer; transition: background .2s;
}
.faq-q:hover { background: var(--sky-lt); }
.faq-q[aria-expanded="true"] { background: var(--sky-lt); color: var(--blue); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sky-lt); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: var(--t);
}
.faq-icon svg {
  width: 14px; height: 14px; stroke: var(--blue); stroke-width: 2.5;
  fill: none; stroke-linecap: round; transition: transform .3s;
}
.faq-q[aria-expanded="true"] .faq-icon { background: var(--blue); }
.faq-q[aria-expanded="true"] .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s;
}
.faq-a.open { max-height: 400px; }
.faq-a-inner { padding: 4px 22px 20px; color: var(--muted); font-size: .95rem; line-height: 1.78; }


/* ══════════════════════════════════════════════════════════════════
   SUNSET TOUR — ROUTE CARDS
   ══════════════════════════════════════════════════════════════════ */

.route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.route-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--s2); transition: var(--t);
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--s3); }
.route-img { height: 220px; overflow: hidden; background: var(--sky-lt); position: relative; }
.route-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.route-card:hover .route-img img { transform: scale(1.05); }
.route-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,36,63,.72); color: var(--yellow);
  font-family: var(--fh); font-weight: 700; font-size: .72rem;
  padding: 4px 11px; border-radius: var(--pill);
  backdrop-filter: blur(6px);
}
.route-body { padding: 26px 22px; }
.route-body h3 { margin-bottom: 10px; }
.route-body p { color: var(--muted); font-size: .93rem; line-height: 1.72; }
.route-stops {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 7px;
}
.route-stop {
  font-family: var(--fh); font-size: .78rem; font-weight: 600;
  padding: 4px 11px; background: var(--sky-lt); color: var(--blue);
  border-radius: var(--pill);
}


/* ══════════════════════════════════════════════════════════════════
   BOOKING INFO WIDGET (3 načina bookinga)
   ══════════════════════════════════════════════════════════════════ */

.book-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.book-way {
  background: var(--white); border-radius: var(--r-lg);
  padding: 30px 24px; box-shadow: var(--s1);
  border-top: 4px solid var(--sky-lt); transition: var(--t);
}
.book-way:hover { border-top-color: var(--orange); box-shadow: var(--s2); transform: translateY(-5px); }
.book-way-icon { font-size: 2rem; margin-bottom: 12px; }
.book-way h3 { font-size: 1.1rem; margin-bottom: 10px; }
.book-way p { color: var(--muted); font-size: .9rem; line-height: 1.7; }


/* ══════════════════════════════════════════════════════════════════
   CANCELLATION POLICY CARDS
   ══════════════════════════════════════════════════════════════════ */

.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.policy-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 22px; box-shadow: var(--s1);
  border-top: 4px solid var(--sky); transition: var(--t);
}
.policy-card:hover { box-shadow: var(--s2); transform: translateY(-4px); }
.policy-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.policy-list { display: flex; flex-direction: column; gap: 9px; }
.policy-ok, .policy-no {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .88rem; line-height: 1.55; color: var(--text);
}
.policy-ok::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.policy-no::before { content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0; }
.policy-note { margin-top: 12px; font-size: .8rem; color: var(--muted); }
.policy-deposit {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 600;
  color: var(--orange); margin-bottom: 10px;
}


/* ══════════════════════════════════════════════════════════════════
   CONTACT FORMA
   ══════════════════════════════════════════════════════════════════ */

.contact-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.contact-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px; box-shadow: var(--s3);
  border-top: 5px solid var(--orange);
}
.contact-form h2 { margin-bottom: 22px; font-size: clamp(1.4rem, 2.5vw, 2rem); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--fh); font-size: .88rem; font-weight: 600;
  color: var(--blue); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid rgba(0,119,182,.12); border-radius: var(--r-sm);
  font-family: var(--fb); font-size: .97rem; color: var(--text);
  background: var(--white); transition: border-color .25s, box-shadow .25s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,119,182,.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230077b6' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--yellow); color: var(--blue);
  font-family: var(--fh); font-size: 1.05rem; font-weight: 700;
  border: none; border-radius: var(--pill); cursor: pointer;
  box-shadow: 0 6px 20px rgba(254,215,7,.38); transition: var(--t);
  margin-top: 6px;
}
.form-submit:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.form-note { text-align: center; margin-top: 10px; font-size: .82rem; color: var(--muted); }

/* Contact info panel */
.contact-info { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-info h2 { margin-bottom: 4px; font-size: clamp(1.4rem, 2.5vw, 2rem); }
.contact-info > p { color: var(--muted); margin-bottom: 8px; }
.ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border-radius: var(--r-md);
  padding: 18px 20px; box-shadow: var(--s1);
  transition: var(--t);
}
.ci-item:hover { box-shadow: var(--s2); transform: translateX(4px); }
.ci-ico {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--sky-lt); display: flex; align-items: center; justify-content: center;
}
.ci-ico svg {
  width: 20px; height: 20px; stroke: var(--blue); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.ci-item h3 { font-size: .93rem; margin-bottom: 4px; }
.ci-item a, .ci-item p { font-size: .92rem; color: var(--muted); transition: color .2s; }
.ci-item a:hover { color: var(--blue); }
.contact-map {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--s2);
  height: 240px; background: var(--sky-lt); margin-top: 8px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }


/* ══════════════════════════════════════════════════════════════════
   BOAT INSTRUCTIONS PAGE — SPECIFIČNO
   ══════════════════════════════════════════════════════════════════ */

.instruct-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.session-includes {
  background: var(--off); border-radius: var(--r-lg); padding: 30px 28px;
  border-left: 5px solid var(--sky); margin-top: 18px;
}
.session-includes h3 { margin-bottom: 14px; }
.session-price-hero {
  background: var(--blue); color: var(--white);
  border-radius: var(--r-lg); padding: 32px 28px;
  text-align: center; box-shadow: var(--s3); margin: 24px 0;
}
.session-price-hero .price-big {
  font-family: var(--fh); font-size: 3.2rem; font-weight: 700;
  color: var(--yellow); line-height: 1;
}
.session-price-hero p { color: rgba(255,255,255,.78); margin-top: 8px; }


/* ══════════════════════════════════════════════════════════════════
   GENERAL PAGE — INFO CARD (kayak, SUP, pedal)
   ══════════════════════════════════════════════════════════════════ */

.use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.use-it {
  background: var(--white); border-radius: var(--r-md);
  padding: 22px 20px; box-shadow: var(--s1);
  display: flex; gap: 14px; align-items: flex-start; transition: var(--t);
}
.use-it:hover { box-shadow: var(--s2); transform: translateY(-4px); }
.use-emoji { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.use-it h3 { font-size: 1rem; margin-bottom: 6px; }
.use-it p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* Single price box */
.price-box {
  background: var(--blue); border-radius: var(--r-lg);
  padding: 36px 32px; color: var(--white); text-align: center; box-shadow: var(--s3);
}
.price-box h2 { color: var(--white); margin-bottom: 20px; }
.price-box .price-table thead { background: rgba(255,255,255,.12); }
.price-box .price-table thead th { color: var(--yellow); }
.price-box .price-table tbody tr { border-color: rgba(255,255,255,.08); }
.price-box .price-table tbody tr:nth-child(even) { background: rgba(255,255,255,.05); }
.price-box .price-table tbody tr:hover { background: rgba(255,255,255,.1); }
.price-box .price-table td { color: rgba(255,255,255,.88); }
.price-box .price-table td:last-child { color: var(--yellow); }

/* Wrap for two price tables */
.price-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }


/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */

footer { background: var(--blue-dk); color: rgba(255,255,255,.68); padding: 58px 20px 28px; }
.ft-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 42px;
  max-width: 1160px; margin: 0 auto; padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer logo */
.ft-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.ft-logo-dot {
  width: 30px; height: 30px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ft-logo-dot svg {
  width: 14px; height: 14px; stroke: var(--blue-dk); stroke-width: 2.2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.ft-logo-text { font-family: var(--fh); font-size: 1.45rem; font-weight: 700; color: var(--white); }

.ft-brand p { font-size: .87rem; line-height: 1.75; max-width: 280px; margin-bottom: 16px; }

.ft-contact { display: flex; flex-direction: column; gap: 8px; }
.ft-contact a, .ft-contact span {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .84rem; color: rgba(255,255,255,.63); transition: color .2s;
}
.ft-contact a:hover { color: var(--yellow); }
.ft-contact svg {
  width: 13px; height: 13px; stroke: var(--sky); stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 2px;
}

.ft-insta {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-family: var(--fh); font-weight: 600; font-size: .86rem;
  color: rgba(255,255,255,.52); transition: color .2s;
}
.ft-insta:hover { color: var(--yellow); }
.ft-insta svg {
  width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.ft-col h4 { font-family: var(--fh); font-size: .96rem; color: var(--white); margin-bottom: 13px; }
.ft-col ul { display: flex; flex-direction: column; gap: 8px; }
.ft-col ul a { font-size: .84rem; color: rgba(255,255,255,.56); transition: color .2s; }
.ft-col ul a:hover { color: var(--yellow); }
.ft-col ul li a[href*="instagram"] { display: flex; align-items: center; gap: 6px; }
.ft-col ul li a[href*="instagram"] svg {
  width: 12px; height: 12px; stroke: currentColor; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.ft-hours {
  margin-top: 8px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: .83rem; line-height: 1.65;
}
.ft-hours strong { display: block; color: var(--yellow); font-family: var(--fh); margin-bottom: 3px; }

.ft-bottom {
  max-width: 1160px; margin: 22px auto 0; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; font-size: .77rem; color: rgba(255,255,255,.27);
}
.ft-bottom span { color: rgba(255,255,255,.37); }


/* ══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-28 { margin-bottom: 28px; }

/* Italic kursiv u copy-u */
.italic { font-style: italic; color: var(--muted); }

/* Orange highlight text */
.highlight { color: var(--orange); }

/* Warning / napomena box */
.note-box {
  background: rgba(255,159,28,.08); border: 1.5px solid rgba(255,159,28,.22);
  border-radius: var(--r-md); padding: 16px 20px; margin: 16px 0;
  font-size: .92rem; color: var(--text); line-height: 1.65;
}
.note-box strong { color: var(--orange); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.55);
  font-family: var(--fh); margin-bottom: 10px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.35); }


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 960px (tablet)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  /* Nav */
  .nav-l  { display: none; }
  .burger { display: flex; }

  /* Sekcije */
  .sec { padding: 66px 0; }
  .sec-why, .sec-loc { padding: 66px 0; }

  /* Grids */
  .svc-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
  .story-lay    { grid-template-columns: 1fr; gap: 38px; }
  .loc-lay      { grid-template-columns: 1fr; gap: 34px; }
  .loc-img      { aspect-ratio: 16/9; }
  .chooser-grid { grid-template-columns: 1fr 1fr; }
  .islands-grid { grid-template-columns: 1fr 1fr; }
  .steps        { grid-template-columns: repeat(2, 1fr); }
  .route-grid   { grid-template-columns: 1fr; }
  .book-ways    { grid-template-columns: 1fr; }
  .policy-grid  { grid-template-columns: 1fr; }
  .contact-lay  { grid-template-columns: 1fr; gap: 36px; }
  .instruct-lay { grid-template-columns: 1fr; gap: 36px; }
  .intro-lay    { grid-template-columns: 1fr; gap: 34px; }
  .price-pair   { grid-template-columns: 1fr; gap: 20px; }
  .price-dual   { grid-template-columns: 1fr; }
  .use-grid     { grid-template-columns: 1fr; }

  /* Boat cards */
  .boat-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .boat-card,
  .boat-card.rev { flex-direction: column; }
  .boat-card.rev .boat-img { order: 0; }
  .boat-card.rev .boat-body { order: 0; }
  .boat-img { min-height: unset; aspect-ratio: 16/9; }
  .boat-body { padding: 28px 24px; }

  /* Footer */
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .ft-brand { grid-column: 1 / -1; }
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 600px (mobile)
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* Sekcije */
  .sec { padding: 50px 0; }
  .sec-why, .sec-loc { padding: 50px 0; }

  /* Grids — sve u 1 kolonu */
  .svc-grid, .why-grid, .team-grid,
  .chooser-grid, .islands-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  /* Stats */
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .stat-n    { font-size: 2.3rem; }

  /* Cards */
  .wc   { padding: 32px 18px; }
  .cta-box { padding: 44px 18px; }

  /* Buttons row */
  .hero-btns, .cta-row, .boat-cta { flex-direction: column; align-items: center; }

  /* Footer */
  .ft-grid   { grid-template-columns: 1fr; }
  .ft-brand  { grid-column: auto; }
  .ft-bottom { flex-direction: column; text-align: center; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Boat card */
  .boat-specs { grid-template-columns: 1fr 1fr; }
  .boat-grid  { grid-template-columns: 1fr; }
  .boat-body  { padding: 24px 18px; }
}
