/* =============================================================
   Transport Trotters Sarajevo — main.css
   Single file, no split, no tricks — loaded normally
   ============================================================= */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Variables ── */
:root {
    --y:   #FFC107;
    --yd:  #e6aa00;
    --yl:  #fffde7;
    --dk:  #1a1a1a;
    --dkk: #0d0d0d;
    --mid: #2c2c2c;
    --gr:  #f5f6f7;
    --grm: #e5e5e5;
    --tx:  #2d2d2d;
    --mu:  #666666;
    --wh:  #ffffff;
    --grn: #25d366;
    --grnd:#1db954;
    --ev:  #7c3aed;
    --evl: #f3f0ff;
    --r:   8px;
    --rl:  14px;
    --sh:  0 2px 16px rgba(0,0,0,.08);
    --sh2: 0 6px 32px rgba(0,0,0,.14);
    --tr:  .2s ease;
    --maxw: 1180px;
    --pad: 24px;
    --nav-h: 68px;
    --bar-h: 38px;
    --hdr-h: 106px; /* bar + nav */
}

/* ── Body offset for fixed header ── */
body { padding-top: var(--hdr-h); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--bar-h);
    background: #111111;
    border-bottom: 1px solid rgba(255,193,7,.15);
    z-index: 1000;
    display: flex;
    align-items: center;
}
.top-bar-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: .78rem;
}
.tbi { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.65); white-space: nowrap; }
.tbi strong { color: var(--y); }
.tbi a { color: rgba(255,255,255,.65); transition: color var(--tr); }
.tbi a:hover { color: var(--y); }
.tbi-sep { color: rgba(255,255,255,.2); }
.tbi-wa {
    background: var(--grn);
    color: #fff !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .75rem;
    transition: background var(--tr);
    white-space: nowrap;
}
.tbi-wa:hover { background: var(--grnd) !important; color: #fff !important; }

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.main-nav {
    position: fixed;
    top: var(--bar-h);
    left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(24,24,24,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,193,7,.12);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
    transition: box-shadow .3s;
}
.main-nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.5); }

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: auto;
    flex-shrink: 0;
    padding-right: 12px;
}
.logo-box {
    width: 44px;
    height: 44px;
    background: var(--y);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(255,193,7,.38);
    transition: transform var(--tr), box-shadow var(--tr);
}
.logo:hover .logo-box {
    transform: scale(1.07);
    box-shadow: 0 4px 18px rgba(255,193,7,.55);
}
.logo-txt { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--y);
    letter-spacing: .07em;
    text-transform: uppercase;
}
.logo-sub {
    font-size: .6rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: stretch;
    height: var(--nav-h);
    gap: 0;
}
.nav-links li {
    display: flex;
    align-items: stretch;
}
.nav-links a {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: var(--nav-h);
    color: rgba(255,255,255,.6);
    font-size: .83rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    /*
      Active underline: use box-shadow inset so it's NEVER clipped by overflow.
      border-bottom gets clipped; box-shadow does not.
    */
    transition: color var(--tr), box-shadow var(--tr);
}
.nav-links a:hover {
    color: #fff;
    box-shadow: inset 0 -3px 0 var(--y);
}
.nav-links a.active {
    color: var(--y);
    box-shadow: inset 0 -3px 0 var(--y);
}

/* Nav phone CTA */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--y);
    color: var(--dk) !important;
    padding: 9px 16px;
    border-radius: var(--r);
    font-size: .82rem;
    font-weight: 700;
    margin-left: 14px;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(255,193,7,.3);
    transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
    white-space: nowrap;
}
.nav-phone:hover {
    background: var(--yd);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,193,7,.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    margin-left: 12px;
    flex-shrink: 0;
    transition: background var(--tr);
}
.hamburger:hover { background: rgba(255,255,255,.13); }
.hline {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .28s ease, opacity .18s ease;
}
.hamburger.open .hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hline:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 800;
    opacity: 0;
    transition: opacity .28s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.mob-overlay.show { display: block; opacity: 1; }

.mob-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 88vw);
    background: #141414;
    z-index: 850;
    transform: translateX(102%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,193,7,.14);
    overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    flex-shrink: 0;
}
.mob-close {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    width: 36px; height: 36px;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--tr);
}
.mob-close:hover { background: rgba(255,255,255,.15); }

.mob-links { flex: 1; padding: 6px 0; }
.mob-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    color: rgba(255,255,255,.72);
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color var(--tr), background var(--tr), border-color var(--tr);
}
.mob-links a:hover {
    color: var(--y);
    background: rgba(255,255,255,.04);
    border-left-color: rgba(255,193,7,.35);
}
.mob-links a.active {
    color: var(--y);
    background: rgba(255,193,7,.06);
    border-left-color: var(--y);
}
.mob-icon { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }

.mob-foot {
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.mob-call {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; background: var(--y); color: var(--dk);
    padding: 13px; border-radius: var(--r);
    font-weight: 700; font-size: .92rem; text-decoration: none;
    transition: background var(--tr);
}
.mob-call:hover { background: var(--yd); }
.mob-wa {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; background: var(--grn); color: #fff;
    padding: 13px; border-radius: var(--r);
    font-weight: 700; font-size: .92rem; text-decoration: none;
    transition: background var(--tr);
}
.mob-wa:hover { background: var(--grnd); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.section {
    padding: clamp(52px,8vw,96px) var(--pad);
}
.bg-gray   { background: var(--gr); }
.bg-dark   { background: var(--dk); color: var(--wh); }
.bg-event  { background: var(--evl); }
.text-c    { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.sec-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 800;
    color: var(--dk);
    line-height: 1.22;
    margin-bottom: clamp(24px,5vw,48px);
}
.sec-title::after {
    content: '';
    display: block;
    width: 56px; height: 4px;
    background: var(--y);
    margin: 12px auto 0;
    border-radius: 2px;
}
.sec-title.light { color: #fff; }
.sec-title.left  { text-align: left; }
.sec-title.left::after { margin-left: 0; }
.sec-sub {
    text-align: center;
    color: var(--mu);
    font-size: clamp(.9rem, 2vw, 1rem);
    max-width: 600px;
    margin: -1.4rem auto 2.4rem;
    line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r);
    font-size: .97rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-y  { background: var(--y);   color: var(--dk); box-shadow: 0 3px 14px rgba(255,193,7,.38); }
.btn-y:hover  { background: var(--yd); box-shadow: 0 6px 22px rgba(255,193,7,.52); }
.btn-wa { background: var(--grn); color: #fff;      box-shadow: 0 3px 14px rgba(37,211,102,.32); }
.btn-wa:hover { background: var(--grnd); box-shadow: 0 6px 22px rgba(37,211,102,.45); }
.btn-ev { background: var(--ev);  color: #fff;      box-shadow: 0 3px 14px rgba(124,58,237,.28); }
.btn-ev:hover { background: #6d28d9; }
.btn-dk { background: var(--dk);  color: var(--y);  }
.btn-dk:hover { background: #000; }
.btn-lg { padding: 16px 34px; font-size: 1.04rem; }
.btn-sm { padding: 9px 18px; font-size: .84rem; }
.btn-full { width: 100%; justify-content: center; }

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(150deg, #0d0d0d 0%, #1c1c1c 55%, #252525 100%);
    color: #fff;
    padding: clamp(64px,12vw,110px) var(--pad) clamp(52px,9vw,90px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,193,7,.055) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,193,7,.1);
    border: 1px solid rgba(255,193,7,.25);
    color: var(--y);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 1.2rem;
}
.hero h1 {
    font-size: clamp(1.8rem, 5.5vw, 3.1rem);
    color: var(--y);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: .9rem;
    letter-spacing: -.01em;
}
.hero-sub {
    font-size: clamp(.97rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,.82);
    max-width: 620px;
    margin: 0 auto 1.8rem;
    line-height: 1.75;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2.2rem;
}
.hero-badge {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .82rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--y); padding: 14px var(--pad); }
.trust-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: clamp(14px,3vw,36px);
}
.ti { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--dk); font-size: .9rem; }
.ti-icon { font-size: 1.1rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--dk); padding: 26px var(--pad); }
.stats-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}
.stat-num {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--y);
    line-height: 1;
}
.stat-lbl {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    margin-top: 6px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
.urgency-bar {
    background: #161616;
    border-top: 2px solid var(--y);
    padding: 13px var(--pad);
}
.urgency-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.urg-badge {
    background: var(--y);
    color: var(--dk);
    padding: 3px 12px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.urg-text { color: rgba(255,255,255,.85); font-size: .9rem; }
.urg-cta {
    background: var(--grn);
    color: #fff;
    padding: 7px 18px;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .84rem;
    text-decoration: none;
    transition: background var(--tr), transform var(--tr);
}
.urg-cta:hover { background: var(--grnd); transform: translateY(-2px); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
    gap: 22px;
}
.svc-card {
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--rl);
    padding: 1.75rem;
    box-shadow: var(--sh);
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}
.svc-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh2);
    border-color: var(--y);
}
.svc-card.ev-c { border-top: 3px solid var(--ev); }
.svc-card.ev-c:hover { border-color: var(--ev); box-shadow: 0 8px 32px rgba(124,58,237,.12); }
.svc-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dk); margin-bottom: .65rem; line-height: 1.3; }
.svc-card p { color: var(--mu); font-size: .93rem; line-height: 1.75; flex: 1; margin-bottom: .9rem; }
.svc-arrow { color: var(--y); font-weight: 700; font-size: .82rem; margin-top: auto; }
.ev-c .svc-arrow { color: var(--ev); }

/* ============================================================
   INFO CARDS
   ============================================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}
.ic {
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--rl);
    padding: 1.4rem;
    box-shadow: var(--sh);
    text-align: center;
    transition: transform var(--tr), box-shadow var(--tr);
}
.ic:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.ic-icon { font-size: 2rem; margin-bottom: .7rem; }
.ic-num  { font-size: 2rem; font-weight: 800; color: var(--y); line-height: 1; margin-bottom: .3rem; }
.ic h3   { font-size: .9rem; font-weight: 700; color: var(--dk); margin-bottom: .3rem; }
.ic p    { font-size: .83rem; color: var(--mu); }
.ic.ev-i { border-top: 3px solid var(--ev); }
.ic.ev-i .ic-num { color: var(--ev); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.testi {
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--rl);
    padding: 1.5rem;
    box-shadow: var(--sh);
    position: relative;
}
.t-badge {
    position: absolute; top: 14px; right: 14px;
    background: rgba(39,174,96,.1); color: #1a8a4a;
    font-size: .72rem; font-weight: 700;
    padding: 2px 9px; border-radius: 20px;
    border: 1px solid rgba(39,174,96,.2);
}
.t-stars { color: var(--y); font-size: .95rem; margin-bottom: .7rem; letter-spacing: 2px; }
.t-text  { color: var(--tx); font-size: .92rem; line-height: 1.75; margin-bottom: 1rem; font-style: italic; }
.t-auth  { display: flex; align-items: center; gap: 10px; }
.t-av    {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--y); color: var(--dk);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .88rem; flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: .88rem; color: var(--dk); }
.t-loc  { font-size: .78rem; color: var(--mu); }

/* Rating widget */
.rating-wrap {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--rl);
    padding: 1.4rem 2rem;
    box-shadow: var(--sh);
    flex-wrap: wrap;
    justify-content: center;
}
.r-big   { font-size: 3.2rem; font-weight: 800; color: var(--dk); line-height: 1; }
.r-stars { color: var(--y); font-size: 1.3rem; letter-spacing: 3px; margin: .2rem 0; }
.r-cnt   { font-size: .82rem; color: var(--mu); }
.r-sep   { width: 1px; background: var(--grm); align-self: stretch; }
.r-g     { display: flex; flex-direction: column; gap: 5px; justify-content: center; }
.r-glogo {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .83rem; color: var(--mu);
}
.r-gbox {
    width: 20px; height: 20px; border-radius: 3px;
    background: #4285f4; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 800;
}
.r-verify { font-size: .8rem; font-weight: 700; color: #27ae60; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 27px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
    height: 2px; background: var(--grm); z-index: 0;
}
.pstep { text-align: center; padding: 0 14px; position: relative; z-index: 1; }
.pstep-num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--y); color: var(--dk);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800;
    margin: 0 auto 1rem;
    border: 3px solid var(--wh);
    box-shadow: var(--sh);
}
.pstep h3 { font-size: .93rem; font-weight: 700; color: var(--dk); margin-bottom: .35rem; }
.pstep p  { font-size: .83rem; color: var(--mu); }

/* ============================================================
   PRICING
   ============================================================ */
.pr-table {
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--sh);
}
.pr-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 1.05rem 1.4rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}
.pr-row:last-child { border-bottom: none; }
.pr-row:nth-child(even) { background: var(--gr); }
.prl  { font-size: .95rem; font-weight: 700; color: var(--dk); }
.prs  { font-size: .8rem; color: var(--mu); margin-top: 2px; }
.prp  { font-size: 1.1rem; font-weight: 800; color: var(--y); white-space: nowrap; text-align: right; }
.pr-note {
    background: var(--yl);
    border: 1px solid #ffe082;
    border-left: 4px solid var(--y);
    border-radius: var(--r);
    padding: 1rem 1.3rem;
    font-size: .9rem;
    color: #795548;
    margin-top: 1rem;
}
.pr-note a { color: var(--dk); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: var(--r);
    margin-bottom: 9px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    background: var(--wh);
    border: none;
    text-align: left;
    padding: 1rem 1.3rem;
    font-size: .94rem;
    font-weight: 700;
    color: var(--dk);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: background var(--tr);
    font-family: inherit;
}
.faq-q:hover { background: var(--gr); }
.faq-arr { font-size: .65rem; color: var(--y); flex-shrink: 0; transition: transform .22s; }
.faq-item.open .faq-q { background: var(--yl); }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a {
    display: none;
    padding: .85rem 1.3rem 1rem;
    font-size: .9rem;
    color: var(--mu);
    line-height: 1.8;
    border-top: 1px solid #f0f0f0;
    background: var(--gr);
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dk); color: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px,5vw,52px);
    max-width: 960px;
    margin: 0 auto;
}
.ci h2 { color: var(--y); font-size: clamp(1.2rem,3vw,1.6rem); margin-bottom: 1.3rem; }
.c-row { margin-bottom: 1.2rem; }
.c-row strong { color: var(--y); display: block; margin-bottom: .3rem; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase; }
.c-row a { color: #ccc; font-size: .97rem; transition: color var(--tr); }
.c-row a:hover { color: var(--y); }
.c-row p { color: #aaa; font-size: .95rem; }
.soc-links { display: flex; gap: 9px; margin-top: .7rem; }
.soc-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--y); color: var(--dk);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .88rem;
    transition: transform var(--tr), box-shadow var(--tr);
}
.soc-link:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(255,193,7,.4); }

.cf h3 { color: var(--y); font-size: 1.12rem; margin-bottom: 1.1rem; }
.f-grp { margin-bottom: 10px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #383838;
    border-radius: var(--r);
    background: #202020;
    color: #fff;
    font-family: inherit;
    font-size: .93rem;
    transition: border-color var(--tr), background var(--tr);
    -webkit-appearance: none;
    appearance: none;
}
.f-grp input::placeholder,
.f-grp textarea::placeholder { color: #666; }
.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    outline: none;
    border-color: var(--y);
    background: #252525;
}
.f-grp select option { background: #202020; }
.f-grp textarea { height: 108px; resize: vertical; }
.f-btn {
    width: 100%;
    background: var(--grn);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: var(--r);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    margin-top: 3px;
    transition: background var(--tr), transform var(--tr);
}
.f-btn:hover { background: var(--grnd); transform: translateY(-2px); }
.f-btn:active { transform: translateY(0); }
.f-note { font-size: .74rem; color: #666; text-align: center; margin-top: 7px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #111 0%, #1d1d1d 100%);
    padding: clamp(40px,7vw,72px) var(--pad);
    text-align: center;
    border-top: 2px solid rgba(255,193,7,.2);
    border-bottom: 2px solid rgba(255,193,7,.2);
}
.cta-banner h2 {
    font-size: clamp(1.35rem,4vw,1.9rem);
    font-weight: 800; color: #fff;
    margin-bottom: .65rem; line-height: 1.3;
}
.cta-banner > p { color: rgba(255,255,255,.68); margin-bottom: 1.8rem; font-size: .97rem; }
.cta-nums {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: 10px;
    margin-bottom: 1.3rem;
}
.cta-num {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255,193,7,.08);
    border: 1px solid rgba(255,193,7,.2);
    color: #fff; padding: 9px 18px;
    border-radius: var(--r);
    font-size: .97rem; font-weight: 700;
    text-decoration: none;
    transition: background var(--tr), transform var(--tr);
}
.cta-num:hover { background: rgba(255,193,7,.16); transform: translateY(-2px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}
.gal-item {
    height: clamp(168px,22vw,228px);
    border-radius: var(--rl);
    overflow: hidden;
    background: var(--grm);
}
.gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gal-item:hover img { transform: scale(1.06); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    background: linear-gradient(150deg, #0d0d0d 0%, #1c1c1c 55%, #252525 100%);
    color: #fff;
    padding: clamp(56px,11vw,106px) var(--pad) clamp(44px,7vw,72px);
}
.ev-hero { background: linear-gradient(150deg, #1a0533 0%, #2d1557 50%, #3d1f7a 100%); }
.bc {
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
    font-size: .8rem; color: rgba(255,255,255,.42);
    margin-bottom: .9rem;
}
.bc a { color: rgba(255,255,255,.58); transition: color var(--tr); }
.bc a:hover { color: var(--y); }
.bc span { color: rgba(255,255,255,.28); }
.page-hero h1 {
    font-size: clamp(1.6rem, 4.5vw, 2.65rem);
    color: var(--y); font-weight: 800;
    line-height: 1.2; margin-bottom: .9rem;
}
.ev-hero h1 { color: #c4b5fd; }
.page-hero .lead {
    font-size: clamp(.92rem, 2vw, 1.08rem);
    color: rgba(255,255,255,.8);
    line-height: 1.78;
    max-width: 680px;
    margin-bottom: 1.8rem;
}

/* ============================================================
   CONTENT BOXES
   ============================================================ */
.two-col  { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,52px); align-items: start; }
.three-col{ display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cb h2 { font-size: clamp(1.2rem,3vw,1.6rem); font-weight: 800; color: var(--dk); margin-bottom: .9rem; line-height: 1.3; }
.cb h3 { font-size: clamp(.94rem,2vw,1.06rem); font-weight: 700; color: var(--dk); margin: .9rem 0 .35rem; }
.cb p  { color: var(--mu); margin-bottom: .85rem; line-height: 1.8; }
.cb ul { padding-left: 1.1rem; color: var(--mu); line-height: 1.9; }

.feat-list { list-style: none; padding: 0; }
.feat-list li {
    padding: .5rem 0 .5rem 1.9rem;
    position: relative;
    color: var(--mu);
    border-bottom: 1px solid #f2f2f2;
    font-size: .93rem;
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--y); font-weight: 800;
}
.feat-list.ev-l li::before { color: var(--ev); }

/* ============================================================
   EVENT EXTRAS
   ============================================================ */
.ev-hl {
    background: var(--evl); border: 1px solid #c4b5fd;
    border-left: 4px solid var(--ev); border-radius: var(--r);
    padding: 1rem 1.2rem; font-size: .9rem; color: #4c1d95; margin: 1rem 0;
}
.ev-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 1rem 0; }
.ev-tag {
    background: rgba(124,58,237,.09); color: var(--ev);
    border: 1px solid rgba(124,58,237,.22);
    padding: 4px 12px; border-radius: 20px;
    font-size: .8rem; font-weight: 600;
}

/* ============================================================
   RELATED CARDS
   ============================================================ */
.rel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 12px;
}
.rel-card {
    background: var(--wh);
    border: 1px solid var(--grm);
    border-radius: var(--r);
    padding: 1rem;
    text-decoration: none;
    color: var(--dk);
    transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
    display: block;
}
.rel-card:hover { border-color: var(--y); transform: translateY(-4px); box-shadow: var(--sh); }
.rel-card.ev-r:hover { border-color: var(--ev); }
.rel-card .rc-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.rel-card h3 { font-size: .88rem; font-weight: 700; line-height: 1.3; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
    position: fixed;
    bottom: 84px; right: 18px;
    z-index: 600;
}
.float-wa a {
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--grn); color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 18px rgba(37,211,102,.48);
    text-decoration: none;
    transition: transform var(--tr), box-shadow var(--tr);
    animation: wa-pulse 2.6s infinite;
}
.float-wa a:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(37,211,102,.65);
    animation: none;
}
.float-wa-lbl {
    position: absolute;
    right: 62px; top: 50%; transform: translateY(-50%);
    background: var(--dk); color: #fff;
    font-size: .76rem; font-weight: 600;
    white-space: nowrap; padding: 4px 11px;
    border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.3);
    opacity: 0; pointer-events: none;
    transition: opacity var(--tr);
}
.float-wa:hover .float-wa-lbl { opacity: 1; }
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.48); }
    50%      { box-shadow: 0 4px 18px rgba(37,211,102,.48), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 600;
    background: #0d0d0d;
    border-top: 2px solid rgba(255,193,7,.45);
    padding: 10px 12px;
    gap: 10px;
    box-shadow: 0 -4px 18px rgba(0,0,0,.38);
}
.sticky-cta a {
    flex: 1; display: flex; align-items: center;
    justify-content: center; gap: 6px;
    padding: 12px 8px; border-radius: var(--r);
    font-weight: 700; font-size: .9rem;
    text-decoration: none; line-height: 1;
}
.sc-call { background: var(--y);   color: var(--dk); }
.sc-wa   { background: var(--grn); color: #fff; }

/* ============================================================
   FOOTER — explicit positioning, never fixed
   ============================================================ */
footer {
    position: relative !important;
    display: block !important;
    width: 100%;
    background: var(--dkk);
    color: #888;
    padding: clamp(26px,5vw,44px) var(--pad);
    text-align: center;
    font-size: .87rem;
    clear: both;
}
footer a { color: var(--y); transition: color var(--tr); }
footer a:hover { color: var(--yd); text-decoration: underline; }

.footer-nav {
    /* Fully explicit — can never be fixed or absolute */
    position: static !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 16px;
    margin: .9rem 0;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    height: auto !important;
    width: 100%;
}
.footer-nav a {
    color: #aaa;
    font-size: .83rem;
    box-shadow: none !important;
    transition: color var(--tr);
    padding: 2px 0;
}
.footer-nav a:hover { color: var(--y); text-decoration: none; }
.footer-btm { margin-top: .6rem; font-size: .78rem; color: #555; }

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — Desktop first, scale down
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
    :root { --pad: 20px; }
    .nav-links a { padding: 0 10px; font-size: .8rem; }
}

/* 1024px */
@media (max-width: 1024px) {
    .nav-links a { padding: 0 9px; font-size: .78rem; }
    .nav-phone { padding: 8px 12px; font-size: .78rem; margin-left: 8px; }
}

/* 880px — hamburger meni */
@media (max-width: 880px) {
    :root {
        --bar-h: 0px !important;
        --hdr-h: var(--nav-h, 62px) !important;
    }

    .top-bar,
    .top-bar-hide {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        height: var(--nav-h, 62px) !important;
    }

    .nav-inner {
        height: var(--nav-h, 62px) !important;
        min-height: var(--nav-h, 62px) !important;
    }

    .nav-phone {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 10002;
    }

    .nav-links {
        display: none !important;
        position: fixed !important;
        top: var(--nav-h, 62px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: var(--dark) !important;
        z-index: 10001 !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(0,0,0,.45);
        border-top: 1px solid rgba(255,255,255,.08);
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .nav-links.open,
    .nav-links.active,
    .nav-links.show {
        display: flex !important;
        flex-direction: column !important;
    }

    .nav-links li {
        width: 100% !important;
    }

    .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 14px 22px !important;
        font-size: .95rem !important;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-links a.active,
    .nav-links a:hover {
        background: rgba(255,193,7,.08);
        color: var(--yellow);
    }

    .hero,
    .page-hero,
    header.hero,
    header.page-hero {
        margin-top: 0 !important;
        padding-top: calc(var(--nav-h, 62px) + 18px) !important;
    }

    body {
        padding-top: 0 !important;
    }
}

/* 768px — tablet */
@media (max-width: 768px) {
    .two-col   { grid-template-columns: 1fr; }
    .three-col { grid-template-columns: 1fr 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .sticky-cta { display: flex; }
    .float-wa { bottom: 82px; }
    body { padding-bottom: 68px; }
    .cta-group { flex-direction: column; align-items: stretch; }
    .btn, .btn-lg { width: 100%; justify-content: center; }
    .trust-inner { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .f-row { grid-template-columns: 1fr; }

    .hero,
    .page-hero,
    header.hero,
    header.page-hero {
        margin-top: 0 !important;
        padding-top: calc(var(--nav-h, 62px) + 18px) !important;
    }
}

/* 576px — mobile */
@media (max-width: 576px) {
    :root {
        --pad: 14px;
        --bar-h: 0px !important;
        --hdr-h: var(--nav-h, 62px) !important;
    }

    .top-bar,
    .top-bar-hide {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
    }

    .main-header,
    header.site-header,
    .site-header {
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .nav-links:not(.open):not(.active):not(.show) {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
    }

    .hero,
    .page-hero,
    header.hero,
    header.page-hero,
    #pocetna.hero {
        margin-top: 0 !important;
        padding-top: calc(var(--nav-h, 62px) + 18px) !important;
    }

    .svc-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .gal-grid  { grid-template-columns: 1fr 1fr; }
    .gal-item  { height: 148px; }
    .testi-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .pr-row { grid-template-columns: 1fr; gap: 3px; }
    .prp { text-align: left; }
    .rel-grid { grid-template-columns: 1fr 1fr; }
    .logo-sub { display: none; }
    .logo-box { width: 38px; height: 38px; font-size: 1.2rem; }
    .logo-name { font-size: 1.05rem; }
}

/* 380px — small phone */
@media (max-width: 380px) {
    :root { --pad: 12px; }

    .hero,
    .page-hero,
    header.hero,
    header.page-hero,
    #pocetna.hero {
        margin-top: 0 !important;
        padding-top: calc(var(--nav-h, 62px) + 16px) !important;
    }

    .info-grid { grid-template-columns: 1fr; }
    .rel-grid  { grid-template-columns: 1fr 1fr; }
    .gal-grid  { grid-template-columns: 1fr; }
    .gal-item  { height: 200px; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .stat-num { font-size: 1.7rem; }
}

/* ============================================================
   FINAL NAV + MOBILE FIXES — added by ChatGPT
   Fixes: visible logo, one active underline, working hamburger drawer,
   footer nav not fixed, and mobile/tablet responsive menu.
   ============================================================ */

/* Keep only the real main navigation fixed. Footer/mobile nav must never behave like header nav. */
body > nav.main-nav,
.main-nav {
    position: fixed !important;
    top: var(--bar-h) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1200 !important;
    display: block !important;
}

.footer-nav,
.mob-links {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    box-shadow: none !important;
}

/* Logo must always be visible and aligned */
.main-nav .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: var(--nav-h) !important;
    overflow: visible !important;
}

.main-nav .logo {
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: max-content !important;
    flex-shrink: 0 !important;
    z-index: 1202 !important;
}

.main-nav .logo-box,
.mob-head .logo-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-nav .logo-txt,
.main-nav .logo-name,
.mob-head .logo-txt,
.mob-head .logo-name {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Desktop nav polished */
.nav-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.nav-links a.active {
    color: var(--y) !important;
    box-shadow: inset 0 -3px 0 var(--y) !important;
}

/* Drawer must appear above everything */
.mob-overlay {
    z-index: 1990 !important;
}
.mob-drawer {
    z-index: 2000 !important;
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.mob-drawer.open {
    transform: translateX(0) !important;
}
.hamburger {
    z-index: 1203 !important;
}

/* Tablet/mobile: hide desktop menu and use hamburger */
@media (max-width: 1100px) {
    .main-nav .nav-links,
    .main-nav .nav-phone {
        display: none !important;
    }
    .main-nav .hamburger {
        display: flex !important;
    }
    .main-nav .nav-inner {
        justify-content: space-between !important;
    }
}

/* Small devices: remove top bar to save space, keep logo + hamburger clean */
@media (max-width: 768px) {
    :root { --bar-h: 0px; --hdr-h: var(--nav-h); }
    .top-bar { display: none !important; }
    .main-nav { top: 0 !important; }
    .main-nav .nav-inner { height: var(--nav-h) !important; }
    .hero, .page-hero { margin-top: var(--nav-h) !important; }
    .logo-sub { display: none !important; }
}

@media (max-width: 430px) {
    .main-nav .logo-box { width: 36px !important; height: 36px !important; font-size: 1.05rem !important; }
    .main-nav .logo-name { font-size: .98rem !important; letter-spacing: .04em !important; }
    .hamburger { width: 40px !important; height: 40px !important; margin-left: 8px !important; }
}

/* Make page sections/content visible and spaced even if previous CSS conflicts */
.section, .contact-section, .cta-banner, footer {
    display: block !important;
    visibility: visible !important;
}
@media (max-width: 880px) {

    .top-bar,
    .top-bar-hide {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    #pocetna.hero,
    .hero,
    .page-hero,
    header.hero {
        margin-top: 0 !important;
        padding-top: 80px !important;
    }

}