/* ============================================================
   style.css – Una Pirates
============================================================ */


/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange:      #E8671A;
    --orange-dark: #C8571A;
    --green-dark:  #1B4D35;
    --green-nav:   #1A6B45;
    --white:       #ffffff;
    --text-light:  rgba(255,255,255,0.85);
    --font:        'Montserrat', sans-serif;
}
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: var(--font);
    color: var(--white);
    overflow-x: clip; /* clip umjesto hidden – ne kvari sticky */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Kad se scrolla – bijela/pijesak pozadina */
.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

/* Logo tekst – bijel na hero, taman na scroll */
.navbar .nav-logo-main {
    color: var(--white);
    transition: color 0.35s;
}
.navbar .nav-logo-sub {
    color: rgba(255,255,255,0.6);
    transition: color 0.35s;
}
.navbar.scrolled .nav-logo-main {
    color: var(--green-dark);
}
.navbar.scrolled .nav-logo-sub {
    color: rgba(0,0,0,0.4);
}

/* Nav links – bijeli na hero, tamnozeleni na scroll */
.nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: color 0.35s;
    position: relative;
}
.navbar.scrolled .nav-link {
    color: var(--green-dark);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover         { color: var(--orange); }
.navbar.scrolled .nav-link:hover { color: var(--orange); }

/* Lang button – bijeli border na hero, tamni na scroll */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    padding: 7px 14px;
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.35s, color 0.35s;
}
.navbar.scrolled .lang-btn {
    border-color: rgba(0,0,0,0.25);
    color: #333;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }

.lang-btn .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.2s;
}
.lang-btn.open .fa-chevron-down { transform: rotate(180deg); }

/* Hamburger – bijeli na hero, taman na scroll */
.hamburger span {
    background: var(--white);
    transition: background 0.35s;
}
.navbar.scrolled .hamburger span {
    background: var(--green-dark);
}

/* ---- Nav container ---- */
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
}
.nav-logo-main {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}
.nav-logo-sub {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* ---- Lang dropdown ---- */
.lang-switcher { position: relative; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 170px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 999;
}
.lang-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}
.lang-option img {
    width: 20px; height: 14px;
    object-fit: cover;
    border-radius: 2px;
}
.lang-option:hover    { background: #f5f5f5; }
.lang-option.active   { color: var(--orange); font-weight: 700; }
.lang-option .fa-check { margin-left: auto; font-size: 12px; color: var(--orange); }
.lang-dropdown-mobile  { right: 0; left: auto; }

/* ---- Rezerviši btn ---- */
.btn-rezervisi {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-rezervisi:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-rezervisi-full {
    display: block;
    text-align: center;
    margin: 24px 24px 32px;
    padding: 16px;
    font-size: 16px;
}

/* ---- Hamburger ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px; height: 2.5px;
    border-radius: 2px;
}

/* ---- Lang btn dark (mobile header) ---- */
.lang-btn-dark {
    border-color: rgba(0,0,0,0.3);
    color: #333;
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 100%; height: 100%;
    background: var(--white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}
.mobile-menu-header .nav-logo-main { color: var(--green-dark); }
.mobile-menu-header .nav-logo-sub  { color: rgba(0,0,0,0.4); }

.mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.close-menu {
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
}

.mobile-nav-links { flex: 1; padding: 16px 0; }
.mobile-nav-link {
    display: block;
    padding: 18px 28px;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-nav);
    border-bottom: 1px solid #eee;
    transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--orange); }

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,30,15,0.35) 0%,
        rgba(0,30,15,0.55) 50%,
        rgba(0,20,10,0.65) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 0 24px;
}
.hero-location {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title-accent { color: var(--orange); }
.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ============================================================
   STATS BAR (post-header)
============================================================ */
.stats-bar {
    background-color: #1D7267;
    padding: 28px 24px;
}
.stats-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}
.stat-icon {
    font-size: 28px;
    color: var(--orange);
    flex-shrink: 0;
}
.stat-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}
.stat-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
}
.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
    margin: 0 16px;
}

/* ============================================================
   RUTE I DOŽIVLJAJI
============================================================ */
.rute {
    background-color: #EDEAE4;
    padding: 80px 24px;
}

.rute-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Grid */
.rute-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Kartica */
.ruta-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.ruta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

/* Slika */
.ruta-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.ruta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ruta-card:hover .ruta-img {
    transform: scale(1.04);
}

/* Badge (R1, R2, Kayak) */
.ruta-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    color: #fff;
}

.badge-orange {
    background: var(--orange);
}

/* Cijena */
.ruta-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
}

/* Body */
.ruta-body {
    padding: clamp(14px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ruta-naziv {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ruta-opis {
    font-size: clamp(13px, 1.3vw, 15px);
    color: #666;
    line-height: 1.65;
    flex: 1;
    margin-bottom: clamp(14px, 2vw, 24px);
}

.ruta-body .r-hero-meta {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
    margin-bottom: 13px;
}

.ruta-body .r-hero-meta li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #555;
}

.ruta-body .r-hero-meta li i {
	color: var(--orange);
	font-size: 13px;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}


.ruta-btns {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    flex-wrap: nowrap;
    margin-top: auto;
}

.btn-saznaj {
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    padding: clamp(9px, 1vw, 11px) clamp(14px, 1.5vw, 22px);
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    display: inline-block;
}

.btn-saznaj:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-rezerviraj {
    background: transparent;
    color: #1a1a1a;
    font-family: var(--font);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    padding: clamp(8px, 1vw, 10px) clamp(14px, 1.5vw, 22px);
    border-radius: 50px;
    border: 2px solid #ddd;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    display: inline-block;
}

.btn-rezerviraj:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-1px);
}

/* =================================================================
   RUTE – SLIDER UNUTAR KARTICE
   Dodaj na kraj style.css
================================================================= */

.ruta-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ruta-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
}

.ruta-slide {
	min-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

/* ---- Strelice ---- */
.ruta-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.88);
	color: #1a1a1a;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.15s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.ruta-arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.08);
}

.ruta-arrow--prev { left: 12px; }
.ruta-arrow--next { right: 12px; }

/* ---- Tačke (dots) ---- */
.ruta-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 10;
}

.ruta-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 1.5px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.ruta-dot.active {
	background: #fff;
	transform: scale(1.25);
}


/* ============================================================
   Istraži Rijeku Una
============================================================ */
/* ============================================================
   Istraži Rijeku Una
============================================================ */
/* ============================================================
   Istraži Rijeku Una
============================================================ */


/* ============================================================
   QUIZ – Koji si tip raftera?
============================================================ */
.quiz-section {
    background-color: #132E22;
    padding: 80px 24px;
}

.quiz-container {
    max-width: 780px;
    margin: 0 auto;
}

/* Header */
.quiz-header {
    text-align: center;
    margin-bottom: 48px;
}

.quiz-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.quiz-title-accent {
    color: var(--orange);
}

.quiz-subtitle {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255,255,255,0.65);
    font-weight: 400;
}

/* Card */
.quiz-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Card header (gradient) */
.quiz-card-header {
    background: linear-gradient(135deg, #1D7267 0%, #34a394 100%);
    padding: 22px 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*. boja prva #3EB489*/

.quiz-step-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.quiz-wave-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.7);
    letter-spacing: -2px;
}

/* Progress bar */
.quiz-progress-bar {
    background: linear-gradient(135deg, #1D7267 0%, #34a394 100%);
    padding: 14px 28px 20px;
}

.quiz-progress-fill {
    height: 5px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Card body */
.quiz-card-body {
    padding: 28px 28px 32px;
    background: #fff;
}

.quiz-pitanje {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
}

/* Opcije */
.quiz-opcije {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-opcija {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #F7F5F0;
    border: 2px solid transparent;
    border-radius: 14px;
    font-family: var(--font);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.quiz-opcija:hover {
    border-color: var(--orange);
    background: #fff;
    transform: translateX(4px);
}

.quiz-opcija.selected {
    border-color: var(--orange);
    background: #FFF5EE;
}

.quiz-emoji {
    font-size: 20px;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

/* Rezultat */
.quiz-rezultat-header {
    background: linear-gradient(135deg, #3EB489 0%, #4AADE8 100%);
    padding: 36px 28px 28px;
    text-align: center;
}

.quiz-rezultat-emoji-wrap {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}

.quiz-rezultat-tip {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.quiz-rezultat-opis {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

.quiz-rezultat-body {
    padding: 28px;
    background: #fff;
}

.quiz-features-box {
    background: #F7F5F0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.quiz-features-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.quiz-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.quiz-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.quiz-features-list li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.quiz-trajanje {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

.quiz-trajanje::before {
    content: '⏱';
    font-size: 13px;
}

.quiz-social-proof {
    text-align: center;
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 24px;
}

.quiz-social-proof::before {
    content: '💡 ';
}

.quiz-rezultat-btns {
    display: flex;
    gap: 14px;
}

.btn-quiz-rezervisi {
    flex: 1;
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
}

.btn-quiz-rezervisi:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.btn-quiz-ponovi {
    flex: 1;
    background: transparent;
    color: #1a1a1a;
    font-family: var(--font);
    font-size: clamp(13px, 1.5vw, 15px);
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 50px;
    border: 2px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-quiz-ponovi:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Hidden helper */
.hidden { display: none !important; }

/* ============================================================
   ŠTA NUDIMO – USLUGE
============================================================ */
.usluge {
    background-color: #EDEAE4;
    padding: 80px 24px;
}

.usluge-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid – 4 kolone na desktopu */
.usluge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

/* Kartica */
.usluga-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.usluga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

/* Slika */
.usluga-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.usluga-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.usluga-card:hover .usluga-img {
    transform: scale(1.05);
}

/* Body */
.usluga-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.usluga-naziv {
    font-size: 17px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.usluga-opis {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
}

/* Dugme */
.btn-usluga {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

.btn-usluga:hover {
    background: var(--orange-dark);
    transform: translateX(3px);
}

.btn-arrow {
    font-size: 15px;
    transition: transform 0.2s;
}

.btn-usluga:hover .btn-arrow {
    transform: translateX(3px);
}

/* ---- Ostale aktivnosti ---- */
.ostale-aktivnosti {
    text-align: center;
}

.ostale-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.aktivnosti-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.aktivnost-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e0dbd3;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: default;
    transition: border-color 0.2s, color 0.2s;
}

.aktivnost-pill:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.aktivnost-icon {
    color: var(--orange);
    font-size: 14px;
}

/* ============================================================
   INSTAGRAM GALERIJA
============================================================ */
/* ============================================================
   GALERIJA – galerija.css
   Una Pirates
   ============================================================ */

/* ---- BASE ---- */
.galerija {
    background-color: #ffffff;
    padding: 80px 24px;
}

.galerija-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- HEADER ---- */
.galerija-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange, #f97316);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.galerija-title {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    line-height: 1.3;
}

.galerija-ig-icon {
    font-size: clamp(22px, 3vw, 34px);
    color: #1a1a1a;
    flex-shrink: 0;
}

/* ---- GRID ---- */
/* Desktop: 4 kolone × 2 reda = 8 vidljivih */
.galerija-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

/* Sakrivene stavke (kontroliše JS) */
.galerija-item--hidden {
    display: none !important;
}

/* ---- GRID ITEM ---- */
.galerija-item {
    margin: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
    background-color: #f0f0f0; /* Placeholder dok se slika učitava */
}

.galerija-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Tamni overlay na hover */
.galerija-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
    border-radius: 14px;
    pointer-events: none;
}

.galerija-item:hover img {
    transform: scale(1.06);
}

.galerija-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* ---- DUGMAD ---- */
.galerija-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-vidi-vise,
.btn-vidi-manje {
    background: transparent;
    color: #1a1a1a;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 50px;
    border: 1.5px solid #ccc;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-vidi-vise:hover,
.btn-vidi-manje:hover {
    border-color: var(--orange);
    color: var(--orange);
}


.hidden {
    display: none !important;
}

/* ---- LIGHTBOX ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    user-select: none;
    -webkit-user-drag: none;
}

/* Zatvaranje */
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Navigacija */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Brojač */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

/* ---- Galerija social dugmad ---- */
.galerija-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    margin-bottom: 29px;
    flex-wrap: wrap;
}

.btn-galerija-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-galerija-social:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.btn-tiktok {
    background: #010101;
    color: #fff;
}

.btn-tiktok .fa-tiktok { color: #fff; }

/* Tag */
.galerija-tag {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    user-select: none;
}

.lightbox-counter {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigacijska dugmad */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    z-index: 2;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 20px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 18px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover  { background: rgba(255,255,255,0.25); }
.lightbox-prev:hover   { background: rgba(255,255,255,0.25); transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover   { background: rgba(255,255,255,0.25); transform: translateY(-50%) translateX(2px); }


/* ============================================================
   RECENZIJE – style.css dodatak
============================================================ */
.recenzije {
    background-color: #EDEAE4;
    padding: 80px 24px;
}

.recenzije-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- Google bar ---- */
.google-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.google-bar-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.google-top-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-logo {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
}

.google-reviews-label {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.g-blue   { color: #4285F4; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green  { color: #34A853; }

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-score {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
}

.google-zvjezdice {
    display: flex;
    gap: 2px;
    color: #FBBC05;
    font-size: 18px;
}

.google-count {
    font-size: 15px;
    color: #666;
}

.btn-google-review {
    background: #4285F4;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    display: inline-block;
}

.btn-google-review:hover {
    background: #3367D6;
    transform: translateY(-1px);
}

/* ---- Slider wrapper ---- */
.reviews-slider-wrap {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

/* ---- Slide – grid od kartica ---- */
.reviews-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reviews-slide.active {
    display: grid;
}

/* ---- Kartica ---- */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    animation: reviewFadeIn 0.3s ease;
}

@keyframes reviewFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Author */
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

/* Google G badge */
.review-avatar::after {
    content: 'G';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-verified {
    font-size: 12px;
    color: #4285F4;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-g-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-time {
    font-size: 12px;
    color: #888;
}

/* Zvjezdice */
.review-stars {
    display: flex;
    gap: 2px;
    color: #FBBC05;
    font-size: 14px;
}

/* Tekst – skraćen na 4 linije */
.review-tekst {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.review-tekst--skracen {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;                  /* ← standardna verzija, uklanja warning */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-tekst--prosiren {
    display: block;
    overflow: visible;
}

/* Read more dugme */
.review-read-more {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: #4285F4;
    cursor: pointer;
    align-self: flex-start;
    transition: opacity 0.2s;
}

.review-read-more:hover { opacity: 0.7; }

/* ---- Strelice ---- */
.reviews-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 80px;
}

.reviews-arrow:hover:not(:disabled) {
    border-color: var(--orange);
    color: var(--orange);
}

.reviews-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

/* ---- Dots ---- */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.reviews-dot.active {
    background: #4285F4;
    transform: scale(1.3);
}

/* ============================================================
   VIDEO SEKCIJA
============================================================ */
.video-sekcija {
    background: #ffffff;
    padding: 80px 24px;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-sekcija .section-header {
    margin-bottom: 40px;
}

.section-title.dark {
    color: #1a1a1a;
}

/* ---- Video wrap ---- */
.video-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    aspect-ratio: 16 / 9;
}

/* ---- Video player ---- */
.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ---- Overlay (play button na sredini) ---- */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s;
    border-radius: 20px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--orange-dark);
}

/* Pomjeri play ikonu malo desno (vizualna korekcija) */
.video-play-btn .fa-play {
    margin-left: 4px;
}

/* ---- Controls bar ---- */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    padding: 20px 16px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0 0 20px 20px;
}

.video-wrap:hover .video-controls,
.video-wrap.playing .video-controls {
    opacity: 1;
}

.vc-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 6px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.vc-btn:hover { opacity: 0.75; }

/* Progress bar */
.vc-progress-wrap {
    flex: 1;
    padding: 6px 0;
    cursor: pointer;
}

.vc-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.vc-progress-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
}

.vc-time {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font);
}

/* Fullscreen btn – otvara lightbox */
#vcFullscreen { font-size: 15px; }

/* ============================================================
   VIDEO LIGHTBOX
============================================================ */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.video-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.94);
    cursor: pointer;
}

.video-lightbox-close {
    position: fixed;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}

.video-lightbox-close:hover { background: rgba(255,255,255,0.25); }

.video-lightbox-content {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 1100px;
}

.video-lightbox-player {
    width: 100%;
    border-radius: 12px;
    display: block;
    max-height: 85vh;
    background: #000;
}


/* ============================================================
   FAQ – Pitanja i Odgovori
============================================================ */
.faq {
    background-color: #EDEAE4;
    padding: 80px 24px;
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq .section-header {
    margin-bottom: 48px;
}

/* ---- Lista ---- */
.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---- Jedan item ---- */
.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s;
}

.faq-item.open {
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* ---- Pitanje (button) ---- */
.faq-pitanje {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    transition: color 0.2s;
}

.faq-pitanje:hover {
    color: var(--orange);
}

.faq-pitanje[aria-expanded="true"] {
    color: var(--orange);
}

/* ---- Ikona chevron ---- */
.faq-ikona {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.2s;
}

.faq-pitanje[aria-expanded="true"] .faq-ikona {
    transform: rotate(180deg);
    color: var(--orange);
}

/* ---- Odgovor ---- */
.faq-odgovor {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-odgovor.otvoren {
    max-height: 400px;
    padding: 0 24px 22px;
}

.faq-odgovor p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #f0ede8;
    padding-top: 16px;
}

/* ============================================================
   LOKACIJA I PODACI
============================================================ */
.lokacija {
    background-color: #ffffff;
    padding: 80px 24px;
}

.lokacija-container {
    max-width: 1100px;
    margin: 0 auto;
}

.lokacija .section-header {
    margin-bottom: 48px;
}

/* ---- Grid ---- */
.lokacija-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* ---- Mapa ---- */
.lokacija-mapa-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    line-height: 0;
}

.lokacija-mapa {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    border: none;
}

/* ---- Info kartica ---- */
.lokacija-info {
    background: #f4f3f2;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.249);
}

.lokacija-naziv {
    font-size: 26px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

/* ---- Stavke ---- */
.lokacija-stavke {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lokacija-stavka {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.lokacija-ikona-wrap {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #FFF4EE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 17px;
    margin-top: 2px;
}

.lokacija-tekst {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lokacija-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.lokacija-vrijednost {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    font-style: normal;
}


/* ============================================================
   CTA SEKCIJA
============================================================ */
.cta {
    background-color: #0e2018;
    padding: 80px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-container {
    max-width: 780px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 32px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.btn-cta-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-cta-outline .fa-whatsapp {
    font-size: 18px;
    color: #25D366;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background-color: #0e2018;
}

/* ---- Footer main ---- */
.footer-main {
    padding: 64px 24px 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
}

/* ---- Kolona brand ---- */
.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px;
}

/* Socijalne mreže */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.footer-social-btn:hover {
    background: var(--orange);
    color: #fff;
}

/* ---- Kolona naslovi ---- */
.footer-col-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* ---- Linkovi ---- */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

/* ---- Kontakt ---- */
.footer-kontakt {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.footer-kontakt-icon {
    color: var(--orange);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-kontakt-link {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-kontakt-link:hover {
    color: var(--white);
}

/* ---- Footer bottom ---- */
.footer-bottom {
    padding: 20px 24px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-credit {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-credit-link {
    color: var(--orange);
    font-weight: 600;
    transition: opacity 0.2s;
}

.footer-credit-link:hover { opacity: 0.75; }

/* ============================================================
   WHATSAPP FLOATING DUGME
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}


/* ============================================================
   O-NAMA.CSS – specifičan CSS samo za o-nama.html stranicu
============================================================ */

/* ---- Container ---- */
.on-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.on-container--narrow {
    max-width: 720px;
}

/* ============================================================
   HERO
============================================================ */
.on-hero {
    position: relative;
    height: 480px;
    background: url('../images/o-nama-header.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.on-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,32,24,0.55) 0%, rgba(14,32,24,0.75) 100%);
}

.on-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Breadcrumb */
.on-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.on-breadcrumb a {
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}

.on-breadcrumb a:hover { color: #fff; }

.on-breadcrumb i {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

.on-hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0;
}

.on-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* ============================================================
   INTRO
============================================================ */
.on-intro {
    background: #EDEAE4;
    padding: 72px 24px 48px;
    text-align: center;
}

.on-intro-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.on-intro-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.on-intro-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

/* ============================================================
   FOUNDER
============================================================ */
.on-founder {
    background: #EDEAE4;
    padding: 16px 24px 72px;
}

.on-founder-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.on-founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.on-founder-ime {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.on-founder-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.on-founder-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   SKIPERI
============================================================ */
.on-skiperi {
    background: #EDEAE4;
    padding: 0 24px 80px;
}

.on-skiperi-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.on-skiperi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}

.on-skiper-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.on-skiper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.on-skiper-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,0.13);
    margin-bottom: 14px;
}

.on-skiper-ime {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.on-skiper-role {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

/* ============================================================
   CLOSING TEXT
============================================================ */
.on-closing {
    background: #EDEAE4;
    padding: 0 24px 80px;
}

.on-closing-text {
    font-size: 16px;
    color: #555;
    line-height: 1.85;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

/* ============================================================
   VRIJEDNOSTI
============================================================ */
.on-vrijednosti {
    background: #fff;
    padding: 80px 24px;
}

.on-vr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.on-vr-card {
    background: #EDEAE4;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.on-vr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.on-vr-ikona {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--orange);
    font-size: 22px;
}

.on-vr-title {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.on-vr-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* =================================================================
                    SMJEŠTAJ – SEKCIJA
================================================================= */
/* =================================================================
   SMJEŠTAJ – HERO
================================================================= */

.sm-hero {
  position: relative;
  width: 100%;
  height: 520px;
  background: url('../images/smjestaj/ripac-ulaz.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.sm-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 16, 0.65);
}

.sm-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}

.sm-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

.sm-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.sm-hero-breadcrumb a:hover { color: #fff; }

.sm-hero-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  line-height: 1;
}

.sm-hero-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
}

.sm-hero-title {
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin: 4px 0 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* =================================================================
   SMJEŠTAJ – INTRO
================================================================= */

.sm-intro {
  background: #ffffff;
  padding: 72px 24px 0;
}

.sm-intro-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.sm-intro-tag {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sm-intro-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.1;
}

.sm-intro-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ##EDEAE4 */

/* =================================================================
   SMJEŠTAJ – PAKETI
================================================================= */

.sm-paketi {
  background: #EDEAE4;
  padding: 90px 24px;
}

.sm-paketi-wrap {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sm-paketi-tag {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sm-paketi-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.1;
}

.sm-paketi-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 56px;
}

.sm-paketi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.sm-paket-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 28px 40px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sm-paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
}

.sm-paket-ikona {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fef0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--orange);
  font-size: 22px;
}

.sm-paket-naziv {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.sm-paket-opis {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

.sm-paketi-cta { margin-top: 8px; }

.sm-paketi-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.sm-paketi-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.sm-paketi-btn i { font-size: 16px; }



/* =================================================================
   RUTE STRANICA – HERO
================================================================= */
/* =================================================================
   RUTE STRANICA – HERO
================================================================= */

.rute-hero {
	position: relative;
	width: 100%;
	height: 480px;
	background: url('../images/ruta-r2.jpg') center 40% / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.rute-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 18, 0.72);
}

.rute-hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	max-width: 800px;
}

.rute-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}

.rute-hero-breadcrumb a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.rute-hero-breadcrumb a:hover { color: #fff; }
.rute-hero-sep { color: rgba(255,255,255,0.35); }

.rute-hero-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
}

.rute-hero-title {
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	margin: 4px 0 0;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.rute-hero-desc {
	font-size: clamp(15px, 1.8vw, 18px);
	color: rgba(255,255,255,0.8);
	line-height: 1.6;
	margin: 6px 0 0;
}

/* =================================================================
   RUTE LISTA
================================================================= */

.rute-lista {
	background: #EDEAE4;
	padding: 80px 24px;
}

.rute-lista-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 72px;
}

/* Jedan red: slika + info */
.ruta-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* Reverse: slika desno */
.ruta-row--reverse {
	direction: rtl;
}

.ruta-row--reverse > * {
	direction: ltr;
}

/* ---- Slider wrapper ---- */
.ruta-slider-wrap {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* Top ponuda bedž */
.ruta-top-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 20;
	background: var(--orange);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 6px 14px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ---- Slider ---- */
.ruta-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ruta-slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
}

.ruta-slide {
	min-width: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
}

/* Strelice */
.ruta-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,0.9);
	color: #1a1a1a;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.15s;
	box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.ruta-arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.1);
}

.ruta-arrow--prev { left: 12px; }
.ruta-arrow--next { right: 12px; }

/* Tačke */
.ruta-dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 7px;
	z-index: 10;
}

.ruta-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: 2px solid rgba(255,255,255,0.9);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.ruta-dot.active {
	background: #fff;
	transform: scale(1.3);
}

/* ---- Info dio ---- */
.ruta-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ruta-label {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 14px;
	border-radius: 50px;
	width: fit-content;
}

.ruta-naziv {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1.15;
	margin: 0;
}

.ruta-opis {
	font-size: 16px;
	color: #555;
	line-height: 1.75;
	margin: 0;
}

.ruta-meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
}

.ruta-meta li {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

.ruta-meta li i {
	color: var(--green-nav);
	font-size: 14px;
}

.ruta-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.ruta-cijena {
	font-size: 30px;
	font-weight: 900;
	color: var(--green-dark);
}

.ruta-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}


/* =================================================================
   TEAM BUILDING – HERO
================================================================= */

.tb-hero {
	position: relative;
	width: 100%;
	height: 480px;
	background: url('../images/rute/r1/stbackibuk/strbackibuk1.jpeg') center 60% / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.tb-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 18, 0.70);
}

.tb-hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	max-width: 860px;
}

.tb-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}

.tb-hero-breadcrumb a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.tb-hero-breadcrumb a:hover { color: #fff; }
.tb-hero-breadcrumb span:not(:last-child) { color: rgba(255,255,255,0.35); }

.tb-hero-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
}

.tb-hero-title {
	font-size: clamp(28px, 5vw, 62px);
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
	margin: 4px 0 0;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.tb-hero-desc {
	font-size: clamp(14px, 1.6vw, 17px);
	color: rgba(255,255,255,0.8);
	line-height: 1.6;
	margin: 6px 0 0;
}

/* =================================================================
   INTRO
================================================================= */

.tb-intro {
	background: #ffffff;
	padding: 72px 24px 0;
}

.tb-intro-wrap {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tb-intro-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
}

.tb-intro-title {
	font-size: clamp(26px, 3.5vw, 42px);
	font-weight: 900;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.15;
}

.tb-intro-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

/* =================================================================
   FOTO GRID (4 slike u redu)
================================================================= */

.tb-foto {
	background: #EDEAE4;
	padding: 48px 24px 0;
}

.tb-foto-wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.tb-foto-wrap img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	display: block;
}

/* =================================================================
   AKTIVNOSTI
================================================================= */

.tb-aktivnosti {
	background: #EDEAE4;
	padding: 72px 24px 56px;
}

.tb-aktivnosti-wrap {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.tb-aktivnosti-title {
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 900;
	color: #1a1a1a;
	margin: 0 0 10px;
}

.tb-aktivnosti-desc {
	font-size: 16px;
	color: #666;
	margin: 0 0 48px;
}

.tb-aktivnosti-grid {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 12px;
}

.tb-akt-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px 12px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	transition: box-shadow 0.2s, transform 0.2s;
}

.tb-akt-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.10);
	transform: translateY(-3px);
}

.tb-akt-ikona {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #fef0e8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--orange);
}

.tb-akt-card span {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	line-height: 1.3;
}

/* =================================================================
   BENEFITI
================================================================= */

.tb-benefiti {
	background: #EDEAE4;
	padding: 0 24px 72px;
}

.tb-benefiti-wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tb-benefit-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.tb-benefit-ikona {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fef0e8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--orange);
}

.tb-benefit-naziv {
	font-size: 18px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0;
}

.tb-benefit-opis {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* =================================================================
   CTA DUGME
================================================================= */

.tb-cta {
	background: #EDEAE4;
	padding: 0 24px 80px;
}

.tb-cta-inner {
	display: flex;
	justify-content: center;
}

.btn-tb-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--orange);
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	padding: 16px 40px;
	border-radius: 50px;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
}

.btn-tb-cta:hover {
	background: var(--orange-dark);
	transform: scale(1.03);
}

/* ========================================
   RENT.CSS – assets/css/rent.css
   ======================================== */

/* ---- HERO ---- */
.rent-hero {
	position: relative;
	width: 100%;
	height: 460px;
	background: url('../images/rent/rent-header.jpeg') center 50% / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

.rent-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 30, 18, 0.70);
}

.rent-hero-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 24px;
	max-width: 800px;
}

.rent-hero-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}

.rent-hero-breadcrumb a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.2s;
}

.rent-hero-breadcrumb a:hover { color: #fff; }
.rent-hero-breadcrumb span:not(:last-child) { color: rgba(255,255,255,0.35); }

.rent-hero-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
}

.rent-hero-title {
	font-size: clamp(28px, 5vw, 60px);
	font-weight: 900;
	color: #fff;
	line-height: 1.08;
	margin: 4px 0 0;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.rent-hero-desc {
	font-size: clamp(14px, 1.6vw, 17px);
	color: rgba(255,255,255,0.8);
	line-height: 1.6;
	margin: 4px 0 0;
}


/* =================================================================
   RENT INTRO – rent.css
================================================================= */
 
.rent-intro {
	background: #fff;
	padding: 80px 24px;
}
 
.rent-intro-wrap {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 24px 64px;
}
 
/* Desktop:
   Kolona 1 red 1 = vrh (tag + naslov)
   Kolona 1 red 2 = tekst
   Kolona 2 red 1+2 = slika */
.rent-intro-vrh {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
 
.rent-intro-tekst {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
 
.rent-intro-slika {
	grid-column: 2;
	grid-row: 1 / 3;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
 
.rent-intro-slika img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
 
/* Tipografija */
.rent-intro-tag {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--orange);
	text-transform: uppercase;
}
 
.rent-intro-naslov {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1.15;
	margin: 0;
}
 
.rent-intro-tekst p {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}
 
/* Quote box */
.rent-intro-istaknuto {
	background:#EDEAE4;
	border-left: 4px solid var(--orange);
	border-radius: 0 12px 12px 0;
	padding: 18px 20px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
 
.rent-intro-istaknuto i {
	color: var(--orange);
	font-size: 22px;
	flex-shrink: 0;
	margin-top: 2px;
}
 
.rent-intro-istaknuto p {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	line-height: 1.65;
	margin: 0;
}