/* =========================================================
   1. OSNOVNE PROMJENLJIVE
   ========================================================= */

:root {
    --primary: #66713f;
    --primary-dark: #4f5830;
    --primary-light: #859256;

    --secondary: #d2bd72;
    --secondary-hover: #e1cf8b;

    --dark: #151912;
    --dark-soft: #20261d;
    --text: #30352d;
    --text-light: #70766c;

    --background: #f7f6f1;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.15);

    --font-body: "Inter", Arial, sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;

    --container-width: 1380px;
    --header-transition: 0.3s ease;
}


/* =========================================================
   2. RESET I OSNOVNI ELEMENTI
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 48px), var(--container-width));
    margin-inline: auto;
}

.site-main {
    min-height: 500px;
}


/* =========================================================
   3. DUGMAD
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 23px;
    border-radius: 8px;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--secondary);
    color: var(--dark);
}

.button-primary:hover {
    background: var(--secondary-hover);
}

.button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    background: var(--white);
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.top-bar {
    background: var(--secondary);
    color: var(--dark);
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    gap: 30px;
}

.top-bar-contact,
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.top-bar a:hover {
    opacity: 0.65;
}

.top-bar-icon {
    font-size: 17px;
}

.main-navigation {
    position: relative;
    background: rgba(20, 25, 18, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: var(--header-transition);
}

.site-header.is-scrolled .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 25, 18, 0.98);
    backdrop-filter: blur(14px);
}

.navigation-inner {
    display: flex;
    align-items: center;
    min-height: 94px;
    gap: 40px;
    transition: min-height var(--header-transition);
}

.site-header.is-scrolled .navigation-inner {
    min-height: 76px;
}

.site-logo {
    display: block;
    flex-shrink: 0;
    width: 155px;
}

.site-logo img {
    width: 100%;
    max-height: 76px;
    object-fit: contain;
    transition: max-height var(--header-transition);
}

.site-header.is-scrolled .site-logo img {
    max-height: 60px;
}

.navigation-menu {
    flex: 1;
}

.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.menu-list > li {
    position: relative;
}

.menu-list > li > a,
.dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 34px 15px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        padding 0.3s ease;
}

.site-header.is-scrolled .menu-list > li > a,
.site-header.is-scrolled .dropdown-toggle {
    padding-top: 25px;
    padding-bottom: 25px;
}

.menu-list > li > a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 23px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-header.is-scrolled .menu-list > li > a::after,
.site-header.is-scrolled .dropdown-toggle::after {
    bottom: 16px;
}

.menu-list > li > a:hover,
.dropdown-toggle:hover,
.menu-list > li > a.active,
.dropdown-toggle.active {
    color: var(--secondary);
}

.menu-list > li > a:hover::after,
.dropdown-toggle:hover::after,
.menu-list > li > a.active::after,
.dropdown-toggle.active::after {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   5. DROPDOWN MENI
   ========================================================= */

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    z-index: 100;
    min-width: 245px;
    padding: 12px;
    background: var(--dark-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.menu-item-has-children:hover > .dropdown-menu,
.menu-item-has-children.dropdown-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li + li {
    margin-top: 3px;
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown-menu a:hover {
    padding-left: 18px;
    background: rgba(210, 189, 114, 0.1);
    color: var(--secondary);
}


/* =========================================================
   6. MOBILNA NAVIGACIJA
   ========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-booking-button {
    display: none;
}


/* =========================================================
   7. FOOTER
   ========================================================= */

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
}

.footer-main {
    padding: 85px 0 65px;
    background:
        linear-gradient(
            rgba(15, 19, 13, 0.96),
            rgba(15, 19, 13, 0.98)
        );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.25fr;
    gap: 65px;
}

.footer-column h3 {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 14px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 21px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--secondary);
}

.footer-logo {
    display: inline-block;
    width: 175px;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 100%;
    max-height: 95px;
    object-fit: contain;
}

.footer-about p {
    max-width: 380px;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--dark);
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a::before {
    content: "›";
    color: var(--secondary);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-list {
    display: grid;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(210, 189, 114, 0.13);
    color: var(--secondary);
}

.contact-list div {
    min-width: 0;
}

.contact-list small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.45);
}

.contact-list a,
.contact-list span {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.86);
}

.contact-list a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: #0c0f0a;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 30px;
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-legal-links a:hover {
    color: var(--secondary);
}


/* =========================================================
   8. WHATSAPP DUGME
   ========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.32);
}


/* =========================================================
   9. TABLET
   ========================================================= */

@media (max-width: 1180px) {

    .navigation-inner {
        gap: 25px;
    }

    .site-logo {
        width: 135px;
    }

    .menu-list {
        gap: 1px;
    }

    .menu-list > li > a,
    .dropdown-toggle {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .menu-list > li > a::after,
    .dropdown-toggle::after {
        left: 9px;
        right: 9px;
    }

    .header-booking-button {
        padding-inline: 17px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   10. MOBILNI UREĐAJI
   ========================================================= */

@media (max-width: 920px) {

    .container {
        width: min(calc(100% - 32px), var(--container-width));
    }

    .top-bar-inner {
        min-height: 38px;
    }

    .top-bar-contact a:nth-child(2),
    .top-bar-social {
        display: none;
    }

    .navigation-inner,
    .site-header.is-scrolled .navigation-inner {
        min-height: 76px;
    }

    .site-logo {
        width: 125px;
    }

    .site-header.is-scrolled .main-navigation {
        position: relative;
    }

    .navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        z-index: 1001;
        width: min(88%, 390px);
        padding: 95px 25px 35px;
        overflow-y: auto;
        background: var(--dark);
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
        transition: right 0.35s ease;
    }

    .navigation-menu.is-open {
        right: 0;
    }

    .menu-list {
        display: block;
    }

    .menu-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .menu-list > li > a,
    .dropdown-toggle,
    .site-header.is-scrolled .menu-list > li > a,
    .site-header.is-scrolled .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        padding: 16px 3px;
        font-size: 16px;
    }

    .menu-list > li > a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 0 0 12px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .menu-item-has-children.dropdown-open > .dropdown-menu {
        display: block;
    }

    .header-booking-button {
        display: none;
    }

    .mobile-menu-toggle {
        position: relative;
        z-index: 1002;
        display: block;
        margin-left: auto;
    }

    .mobile-booking-button {
        display: flex;
        width: 100%;
        margin-top: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-main {
        padding: 65px 0 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
}


/* =========================================================
   11. MANJI TELEFONI
   ========================================================= */

@media (max-width: 520px) {

    .top-bar-contact {
        width: 100%;
        justify-content: center;
    }

    .navigation-menu {
        width: 100%;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

/* =========================================================
   12. ZAJEDNIČKE SEKCIJE POČETNE STRANICE
   ========================================================= */

.section {
    position: relative;
    padding: 115px 0;
}

.section-heading {
    max-width: 720px;
}

.section-heading-centered {
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2,
.about-preview-content h2,
.why-us-heading h2,
.rent-preview-text h2,
.final-cta-inner h2 {
    margin-bottom: 24px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.section-heading h2 span,
.about-preview-content h2 span,
.why-us-heading h2 span {
    color: var(--primary);
}

.section-heading > p:last-child {
    max-width: 650px;
    color: var(--text-light);
    font-size: 17px;
}

.section-heading-centered > p:last-child {
    margin-inline: auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 17px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.section-heading-centered .section-eyebrow {
    justify-content: center;
}

.section-eyebrow::before {
    content: "";
    width: 31px;
    height: 2px;
    background: var(--secondary);
}

.section-eyebrow-light {
    color: var(--secondary);
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(21, 25, 18, 0.35);
    color: var(--dark);
    font-weight: 700;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        gap 0.25s ease;
}

.text-link:hover {
    gap: 17px;
    border-color: var(--primary);
    color: var(--primary);
}

.button-large {
    min-height: 60px;
    padding-inline: 28px;
}

.button-dark {
    background: var(--dark);
    color: var(--white);
}

.button-dark:hover {
    background: var(--primary);
}

.button-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.button-outline-light:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--dark);
}


/* =========================================================
   13. HERO SEKCIJA
   ========================================================= */

.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 40px);
    padding: 145px 0 115px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.home-hero-background,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-background {
    background-image:
        url("../images/home/hero-jeep.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.home-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(9, 14, 8, 0.91) 0%,
            rgba(9, 14, 8, 0.72) 46%,
            rgba(9, 14, 8, 0.22) 75%,
            rgba(9, 14, 8, 0.38) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.72) 0%,
            rgba(7, 11, 6, 0) 45%
        );
}

.home-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    align-items: end;
    gap: 80px;
}

.hero-text {
    max-width: 900px;
}

.hero-eyebrow {
    color: var(--secondary);
}

.hero-text h1 {
    max-width: 950px;
    margin-bottom: 28px;
    font-family: var(--font-heading);
    font-size: clamp(58px, 7.1vw, 112px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -4px;
}

.hero-text h1 span {
    display: block;
    color: var(--secondary);
}

.hero-description {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 38px;
}

.hero-feature-card {
    align-self: end;
    padding: 31px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(27, 35, 23, 0.89),
            rgba(15, 20, 14, 0.74)
        );
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.27);
    backdrop-filter: blur(15px);
}

.hero-feature-label {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(210, 189, 114, 0.16);
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-feature-card h2 {
    margin-bottom: 13px;
    font-family: var(--font-heading);
    font-size: 29px;
    line-height: 1.2;
}

.hero-feature-card > p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
}

.hero-feature-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin: 23px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-feature-details small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
}

.hero-feature-details strong {
    color: var(--white);
    font-size: 13px;
}

.hero-feature-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
}

.hero-feature-link span {
    font-size: 22px;
    transition: transform 0.25s ease;
}

.hero-feature-link:hover span {
    transform: translateX(5px);
}

.hero-scroll-indicator {
    position: absolute;
    right: 35px;
    bottom: 45px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.scroll-line {
    display: block;
    width: 55px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}


/* =========================================================
   14. STATISTIKA
   ========================================================= */

.home-stats {
    position: relative;
    z-index: 5;
    background: var(--dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    position: relative;
    padding: 42px 28px;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.11);
}

.stat-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* =========================================================
   15. GLAVNE USLUGE
   ========================================================= */

.services-section {
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 55px rgba(31, 39, 27, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 75px rgba(31, 39, 27, 0.12);
}

.service-card::before {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.07);
    transition: transform 0.45s ease;
}

.service-card:hover::before {
    transform: scale(1.45);
}

.service-card-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(20, 25, 18, 0.09);
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
}

.service-card-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 58px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 29px;
}

.service-card p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 15px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-weight: 800;
}

.service-card a span {
    transition: transform 0.25s ease;
}

.service-card a:hover span {
    transform: translateX(5px);
}

.service-card-private .service-icon {
    background: var(--secondary);
    color: var(--dark);
}

.service-card-rent {
    background: var(--dark);
}

.service-card-rent::before {
    background: rgba(210, 189, 114, 0.08);
}

.service-card-rent h3 {
    color: var(--white);
}

.service-card-rent p {
    color: rgba(255, 255, 255, 0.65);
}

.service-card-rent a {
    color: var(--secondary);
}

.service-card-rent .service-card-number {
    color: rgba(255, 255, 255, 0.07);
}


/* =========================================================
   16. TURE
   ========================================================= */

.featured-tours-section {
    background: var(--white);
}

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

.tour-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.09);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 75px rgba(31, 39, 27, 0.14);
}

.tour-card-image {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden;
}

.tour-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(9, 13, 8, 0.55),
            transparent 55%
        );
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.07);
}

.tour-badge,
.tour-price {
    position: absolute;
    z-index: 2;
}

.tour-badge {
    top: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tour-price {
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-size: 12px;
}

.tour-price strong {
    font-size: 21px;
}

.tour-card-content {
    padding: 28px;
}

.tour-location {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-card h3 {
    margin-bottom: 13px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1.2;
}

.tour-card h3 a:hover {
    color: var(--primary);
}

.tour-card-content > p {
    min-height: 77px;
    color: var(--text-light);
    font-size: 14px;
}

.tour-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin: 23px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(20, 25, 18, 0.09);
    border-bottom: 1px solid rgba(20, 25, 18, 0.09);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
}

.tour-meta small {
    display: block;
    margin-bottom: 2px;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 500;
}

.tour-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-weight: 800;
}

.tour-card-link span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.tour-card-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   17. ZAŠTO MI
   ========================================================= */

.why-us-section {
    background: var(--primary);
    color: var(--white);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.why-us-heading {
    align-self: center;
}

.why-us-heading .section-eyebrow {
    color: var(--secondary);
}

.why-us-heading h2 {
    color: var(--white);
}

.why-us-heading h2 span {
    color: var(--secondary);
}

.why-us-heading > p:not(.section-eyebrow) {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.72);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-us-item {
    min-height: 240px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.11);
}

.why-us-number {
    display: block;
    margin-bottom: 35px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 26px;
}

.why-us-item h3 {
    margin-bottom: 11px;
    font-family: var(--font-heading);
    font-size: 24px;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
}


/* =========================================================
   18. O NAMA
   ========================================================= */

.about-preview-section {
    background: var(--background);
}

.about-preview-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 95px;
}

.about-preview-image {
    position: relative;
    min-height: 660px;
}

.about-preview-image > img {
    width: 100%;
    height: 660px;
    border-radius: 18px;
    object-fit: cover;
}

.about-experience-card {
    position: absolute;
    right: -35px;
    bottom: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 260px;
    padding: 26px;
    border-radius: 14px;
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.about-experience-card strong {
    font-family: var(--font-heading);
    font-size: 54px;
    line-height: 1;
}

.about-experience-card span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-preview-content > p:not(.section-eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 28px 0 34px;
}

.check-list li {
    position: relative;
    padding-left: 31px;
    color: var(--dark);
    font-weight: 600;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}


/* =========================================================
   19. RENT-A-SUV
   ========================================================= */

.rent-preview-section {
    position: relative;
    min-height: 740px;
    padding: 125px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.rent-preview-background,
.rent-preview-overlay {
    position: absolute;
    inset: 0;
}

.rent-preview-background {
    background-image:
        url("../images/home/rent-suv.jpg");
    background-position: center;
    background-size: cover;
}

.rent-preview-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(10, 14, 9, 0.94) 0%,
            rgba(10, 14, 9, 0.83) 48%,
            rgba(10, 14, 9, 0.35) 100%
        );
}

.rent-preview-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: end;
    gap: 100px;
}

.rent-preview-text {
    max-width: 780px;
}

.rent-preview-text h2,
.final-cta-inner h2 {
    color: var(--white);
}

.rent-preview-text h2 span,
.final-cta-inner h2 span {
    display: block;
    color: var(--secondary);
}

.rent-preview-text > p:not(.section-eyebrow) {
    max-width: 650px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.rent-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.rent-features span {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 700;
}

.rent-preview-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 17px;
    background: rgba(20, 27, 18, 0.82);
    backdrop-filter: blur(15px);
}

.rent-preview-card-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rent-preview-card h3 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 34px;
}

.rent-preview-card p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.66);
}

.rent-preview-card ul {
    display: grid;
    gap: 10px;
}

.rent-preview-card li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
}

.rent-preview-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
}


/* =========================================================
   20. LOKACIJE
   ========================================================= */

.locations-preview-section {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 290px 290px;
    gap: 20px;
}

.location-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.location-card-large {
    grid-row: span 2;
}

.location-card-wide {
    grid-column: 2;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.location-card:hover img {
    transform: scale(1.07);
}

.location-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(9, 14, 8, 0.83),
            rgba(9, 14, 8, 0.06) 70%
        );
}

.location-card-content {
    position: absolute;
    right: 30px;
    bottom: 27px;
    left: 30px;
    color: var(--white);
}

.location-card-content small {
    display: block;
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.location-card-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
}

.location-card-large .location-card-content strong {
    font-size: 48px;
}

.location-card-content em {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-style: normal;
    opacity: 0;
    transform: translateY(8px);
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.location-card:hover .location-card-content em {
    max-height: 30px;
    margin-top: 8px;
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   21. REZERVACIJA U KORACIMA
   ========================================================= */

.booking-process-section {
    background: var(--background);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.booking-step {
    position: relative;
    min-height: 290px;
    padding: 33px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.06);
}

.booking-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -17px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-size: 17px;
    font-weight: 900;
    transform: translateY(-50%);
}

.booking-step-number {
    position: absolute;
    top: 24px;
    right: 27px;
    color: rgba(20, 25, 18, 0.09);
    font-family: var(--font-heading);
    font-size: 43px;
    font-weight: 700;
}

.booking-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 63px;
    height: 63px;
    margin-bottom: 45px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.11);
    color: var(--primary);
    font-size: 23px;
}

.booking-step h3 {
    margin-bottom: 11px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.booking-step p {
    color: var(--text-light);
    font-size: 14px;
}


/* =========================================================
   22. GALERIJA
   ========================================================= */

.gallery-preview-section {
    background: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 15px;
}

.gallery-preview-item {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    border-radius: 13px;
}

.gallery-preview-item:nth-child(1),
.gallery-preview-item:nth-child(5) {
    grid-column: span 5;
}

.gallery-preview-item:nth-child(2),
.gallery-preview-item:nth-child(6) {
    grid-column: span 3;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.08);
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 22px;
    background:
        linear-gradient(
            0deg,
            rgba(8, 12, 7, 0.74),
            transparent 65%
        );
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
    opacity: 1;
}

.gallery-preview-overlay strong {
    font-size: 13px;
}

.gallery-preview-overlay span {
    font-size: 22px;
}

.section-bottom-action {
    margin-top: 42px;
    text-align: center;
}


/* =========================================================
   23. RECENZIJE
   ========================================================= */

.testimonials-section {
    background: var(--dark);
    color: var(--white);
}

.testimonials-section .section-heading h2 {
    color: var(--white);
}

.testimonials-section .section-heading h2 span {
    color: var(--secondary);
}

.testimonials-section .section-eyebrow {
    color: var(--secondary);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-rating > strong {
    font-family: var(--font-heading);
    font-size: 62px;
    line-height: 1;
}

.testimonial-rating div span {
    display: block;
    color: var(--secondary);
    letter-spacing: 3px;
}

.testimonial-rating small {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
}

.testimonial-stars {
    margin-bottom: 24px;
    color: var(--secondary);
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    min-height: 155px;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-heading);
    font-size: 19px;
    font-style: italic;
    line-height: 1.65;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 900;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   24. ZAVRŠNI CTA
   ========================================================= */

.final-cta-section {
    padding: 90px 0;
    background: var(--primary);
    color: var(--white);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.final-cta-inner > div:first-child {
    max-width: 780px;
}

.final-cta-inner h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.8vw, 62px);
}

.final-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   25. RESPONSIVE POČETNA STRANICA
   ========================================================= */

@media (max-width: 1180px) {

    .home-hero-content {
        grid-template-columns: 1fr 330px;
        gap: 45px;
    }

    .hero-text h1 {
        letter-spacing: -2px;
    }

    .services-grid,
    .tours-grid,
    .testimonials-grid {
        gap: 18px;
    }

    .service-card {
        padding: 32px;
    }

    .why-us-layout,
    .about-preview-layout {
        gap: 55px;
    }

    .rent-preview-content {
        gap: 55px;
    }
}


@media (max-width: 980px) {

    .section {
        padding: 90px 0;
    }

    .home-hero {
        min-height: 850px;
        padding: 120px 0 80px;
    }

    .home-hero-content {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .hero-feature-card {
        max-width: 480px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .services-grid,
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid .service-card:last-child,
    .tours-grid .tour-card:last-child {
        grid-column: span 2;
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }

    .why-us-layout,
    .about-preview-layout,
    .rent-preview-content {
        grid-template-columns: 1fr;
    }

    .why-us-heading {
        max-width: 700px;
    }

    .about-preview-image {
        max-width: 720px;
        min-height: auto;
    }

    .about-preview-image > img {
        height: 580px;
    }

    .about-experience-card {
        right: 25px;
    }

    .rent-preview-card {
        max-width: 500px;
    }

    .locations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 280px;
    }

    .location-card-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .location-card-wide {
        grid-column: auto;
    }

    .booking-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-step:nth-child(2)::after {
        display: none;
    }

    .gallery-preview-item,
    .gallery-preview-item:nth-child(1),
    .gallery-preview-item:nth-child(2),
    .gallery-preview-item:nth-child(5),
    .gallery-preview-item:nth-child(6) {
        grid-column: span 6;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card blockquote {
        min-height: auto;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-cta-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .section {
        padding: 72px 0;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .home-hero {
        min-height: 790px;
        padding-top: 90px;
    }

    .hero-text h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-feature-card {
        padding: 25px;
    }

    .services-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card:last-child,
    .tours-grid .tour-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .about-preview-image > img {
        height: 480px;
    }

    .about-experience-card {
        right: 15px;
        bottom: 20px;
        width: 235px;
    }

    .rent-preview-section {
        padding: 90px 0;
    }

    .locations-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 330px);
    }

    .location-card-large,
    .location-card-wide {
        grid-column: auto;
    }

    .location-card-large .location-card-content strong {
        font-size: 38px;
    }

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .booking-step::after {
        display: none !important;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-preview-item,
    .gallery-preview-item:nth-child(1),
    .gallery-preview-item:nth-child(2),
    .gallery-preview-item:nth-child(5),
    .gallery-preview-item:nth-child(6) {
        grid-column: auto;
    }

    .testimonial-rating {
        align-items: flex-start;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .final-cta-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 28px 20px;
    }

    .stat-item:not(:last-child)::after {
        top: auto;
        right: 20%;
        bottom: 0;
        left: 20%;
        width: auto;
        height: 1px;
    }

    .stat-item:nth-child(2)::after {
        display: block;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 0;
    }

    .service-card {
        min-height: 370px;
        padding: 28px;
    }

    .tour-card-image {
        height: 260px;
    }

    .tour-meta {
        grid-template-columns: 1fr;
    }

    .about-preview-image > img {
        height: 410px;
    }

    .about-experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -30px;
        border-radius: 0 0 14px 14px;
    }

    .rent-preview-content {
        gap: 45px;
    }

    .rent-preview-card {
        padding: 27px;
    }

    .testimonial-card {
        padding: 27px;
    }
}

/* =========================================================
   26. PREGLED TURA – HERO
   ========================================================= */

.tours-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 130px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.tours-page-hero-background,
.tours-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.tours-page-hero-background {
    background-image: url("../images/tours/tours-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.tours-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 13, 7, 0.93) 0%,
            rgba(8, 13, 7, 0.74) 48%,
            rgba(8, 13, 7, 0.3) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8, 13, 7, 0.6),
            transparent 52%
        );
}

.tours-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.tours-page-hero h1 {
    max-width: 900px;
    margin-bottom: 26px;
    font-family: var(--font-heading);
    font-size: clamp(54px, 7vw, 98px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.tours-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.tours-page-hero-content > p:not(.section-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.tours-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}


/* =========================================================
   27. BRZE KATEGORIJE
   ========================================================= */

.tour-categories-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}

.tour-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 22px 65px rgba(21, 30, 17, 0.16);
}

.tour-category-card {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 110px;
    padding: 25px;
    border-right: 1px solid rgba(20, 25, 18, 0.09);
    background: var(--white);
    color: var(--dark);
    text-align: left;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.tour-category-card:last-child {
    border-right: 0;
}

.tour-category-card:hover,
.tour-category-card.is-active {
    background: var(--primary);
    color: var(--white);
}

.tour-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.11);
    color: var(--primary);
    font-size: 21px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.tour-category-card:hover .tour-category-icon,
.tour-category-card.is-active .tour-category-icon {
    background: var(--secondary);
    color: var(--dark);
}

.tour-category-card strong,
.tour-category-card small {
    display: block;
}

.tour-category-card strong {
    margin-bottom: 3px;
    font-size: 15px;
}

.tour-category-card small {
    color: var(--text-light);
    font-size: 11px;
    transition: color 0.25s ease;
}

.tour-category-card:hover small,
.tour-category-card.is-active small {
    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   28. FILTERI
   ========================================================= */

.tours-listing-section {
    padding-top: 125px;
    background: var(--background);
}

.tours-listing-heading {
    align-items: flex-end;
}

.tour-results-counter {
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 9px;
    background: var(--white);
    color: var(--text-light);
    font-size: 13px;
    box-shadow: 0 10px 35px rgba(31, 39, 27, 0.06);
}

.tour-results-counter strong {
    color: var(--primary);
    font-size: 19px;
}

.tour-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.06);
}

.tour-filter-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.tour-filter-group select {
    width: 100%;
    height: 50px;
    padding: 0 42px 0 15px;
    border: 1px solid rgba(20, 25, 18, 0.13);
    border-radius: 7px;
    outline: none;
    background-color: var(--background);
    color: var(--text);
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.tour-filter-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 113, 63, 0.12);
}

.tour-reset-button {
    height: 50px;
    padding: 0 17px;
    border-radius: 7px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.tour-reset-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   29. KARTICE TURA
   ========================================================= */

.all-tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tour-listing-card {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.tour-listing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(31, 39, 27, 0.13);
}

.tour-listing-card.is-hidden {
    display: none;
}

.tour-listing-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.tour-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.tour-listing-card:hover .tour-listing-image img {
    transform: scale(1.07);
}

.tour-listing-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(8, 13, 7, 0.68),
            transparent 60%
        );
}

.tour-listing-image .tour-badge {
    top: 18px;
    left: 18px;
}

.tour-listing-price {
    position: absolute;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-size: 11px;
}

.tour-listing-price strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.1;
}

.tour-listing-content {
    display: flex;
    flex-direction: column;
    padding: 27px;
}

.tour-listing-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.tour-listing-location {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-listing-type {
    padding: 5px 8px;
    border-radius: 50px;
    background: rgba(102, 113, 63, 0.09);
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-listing-content h3 {
    margin-bottom: 11px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.18;
}

.tour-listing-content h3 a {
    transition: color 0.2s ease;
}

.tour-listing-content h3 a:hover {
    color: var(--primary);
}

.tour-listing-content > p {
    margin-bottom: 19px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.65;
}

.tour-listing-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    padding: 16px 0;
    border-top: 1px solid rgba(20, 25, 18, 0.08);
    border-bottom: 1px solid rgba(20, 25, 18, 0.08);
}

.tour-listing-meta > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.09);
    color: var(--primary);
    font-size: 12px;
}

.tour-listing-meta small,
.tour-listing-meta strong {
    display: block;
}

.tour-listing-meta small {
    color: var(--text-light);
    font-size: 9px;
}

.tour-listing-meta strong {
    color: var(--dark);
    font-size: 11px;
}

.tour-listing-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.tour-details-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.tour-details-link span {
    font-size: 18px;
    transition: transform 0.25s ease;
}

.tour-details-link:hover span {
    transform: translateX(5px);
}

.tour-book-button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 11px;
}


/* =========================================================
   30. NEMA REZULTATA
   ========================================================= */

.no-tour-results {
    max-width: 600px;
    margin: 35px auto 0;
    padding: 55px 30px;
    border-radius: 15px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 18px 50px rgba(31, 39, 27, 0.07);
}

.no-tour-results[hidden] {
    display: none;
}

.no-results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.11);
    color: var(--primary);
    font-size: 30px;
}

.no-tour-results h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 29px;
}

.no-tour-results p {
    max-width: 440px;
    margin: 0 auto 23px;
    color: var(--text-light);
}


/* =========================================================
   31. PRIVATNA TURA CTA
   ========================================================= */

.custom-tour-cta {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.custom-tour-cta-background,
.custom-tour-cta-overlay {
    position: absolute;
    inset: 0;
}

.custom-tour-cta-background {
    background-image: url("../images/tours/durmitor.jpg");
    background-position: center;
    background-size: cover;
}

.custom-tour-cta-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 13, 7, 0.95),
            rgba(8, 13, 7, 0.8) 58%,
            rgba(8, 13, 7, 0.5)
        );
}

.custom-tour-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;
}

.custom-tour-cta-content {
    max-width: 780px;
}

.custom-tour-cta h2 {
    margin-bottom: 22px;
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 65px);
    line-height: 1.08;
}

.custom-tour-cta h2 span {
    display: block;
    color: var(--secondary);
}

.custom-tour-cta-content > p:not(.section-eyebrow) {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
}

.custom-tour-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   32. RESPONSIVE – PREGLED TURA
   ========================================================= */

@media (max-width: 1250px) {

    .tour-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-reset-button {
        grid-column: span 2;
    }

    .all-tours-grid {
        grid-template-columns: 1fr;
    }

    .tour-listing-card {
        grid-template-columns: 40% 60%;
        min-height: 390px;
    }
}


@media (max-width: 980px) {

    .tour-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-category-card:nth-child(2) {
        border-right: 0;
    }

    .tour-category-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.09);
    }

    .custom-tour-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .custom-tour-cta-actions {
        flex-direction: row;
    }
}


@media (max-width: 760px) {

    .tours-page-hero {
        min-height: 570px;
        padding: 95px 0 90px;
    }

    .tours-page-hero h1 {
        font-size: clamp(47px, 13vw, 70px);
        letter-spacing: -2px;
    }

    .tours-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tours-page-hero-actions .button {
        width: 100%;
    }

    .tour-categories-section {
        margin-top: -25px;
    }

    .tour-categories-grid {
        grid-template-columns: 1fr;
    }

    .tour-category-card {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(20, 25, 18, 0.09);
    }

    .tour-category-card:last-child {
        border-bottom: 0;
    }

    .tour-filters {
        grid-template-columns: 1fr;
    }

    .tour-reset-button {
        grid-column: auto;
    }

    .tour-listing-card {
        grid-template-columns: 1fr;
    }

    .tour-listing-image {
        height: 330px;
    }

    .tour-listing-content {
        padding: 25px;
    }

    .custom-tour-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .custom-tour-cta-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .tour-listing-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .tour-listing-image {
        height: 275px;
    }

    .tour-listing-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tour-book-button {
        width: 100%;
    }

    .tour-details-link {
        justify-content: space-between;
        padding: 8px 0;
    }
}

/* =========================================================
   33. POJEDINAČNA TURA – HERO
   ========================================================= */

.single-tour-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 720px;
    padding: 155px 0 105px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.single-tour-hero-background,
.single-tour-hero-overlay {
    position: absolute;
    inset: 0;
}

.single-tour-hero-background {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.single-tour-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.93) 0%,
            rgba(7, 11, 6, 0.72) 51%,
            rgba(7, 11, 6, 0.21) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.78) 0%,
            transparent 60%
        );
}

.single-tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.tour-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.tour-breadcrumbs a {
    transition: color 0.2s ease;
}

.tour-breadcrumbs a:hover {
    color: var(--secondary);
}

.single-tour-badge {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.single-tour-hero h1 {
    max-width: 980px;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: clamp(57px, 7.5vw, 105px);
    line-height: 0.97;
    letter-spacing: -3px;
}

.single-tour-location {
    margin-bottom: 17px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-tour-intro {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.single-tour-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}


/* =========================================================
   34. SAŽETAK TURE
   ========================================================= */

.single-tour-summary {
    position: relative;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(20, 28, 17, 0.08);
}

.single-tour-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0.85fr;
}

.single-tour-summary article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 120px;
    padding: 23px;
    border-right: 1px solid rgba(20, 25, 18, 0.08);
}

.single-tour-summary article:last-child {
    border-right: 0;
}

.tour-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    font-size: 18px;
}

.single-tour-summary small,
.single-tour-summary strong {
    display: block;
}

.single-tour-summary small {
    margin-bottom: 2px;
    color: var(--text-light);
    font-size: 10px;
    text-transform: uppercase;
}

.single-tour-summary strong {
    color: var(--dark);
    font-size: 13px;
}

.tour-summary-price {
    justify-content: center;
    background: var(--primary);
    text-align: center;
}

.tour-summary-price small {
    color: rgba(255, 255, 255, 0.6);
}

.tour-summary-price strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 34px;
}


/* =========================================================
   35. GLAVNI LAYOUT
   ========================================================= */

.single-tour-content-section {
    background: var(--background);
}

.single-tour-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 70px;
}

.single-tour-main {
    min-width: 0;
}

.single-tour-section {
    margin-bottom: 95px;
}

.single-tour-section:last-child {
    margin-bottom: 0;
}

.single-tour-section h2 {
    margin-bottom: 25px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}

.single-tour-section > p:not(.section-eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 16px;
}

.tour-section-intro {
    max-width: 760px;
}


/* =========================================================
   36. HIGHLIGHTS
   ========================================================= */

.tour-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tour-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    min-height: 88px;
    padding: 20px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 11px;
    background: var(--white);
}

.tour-highlight-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.tour-highlight-item p {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}


/* =========================================================
   37. ITINERER
   ========================================================= */

.tour-itinerary {
    position: relative;
    margin-top: 40px;
}

.tour-itinerary::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 28px;
    width: 1px;
    background: rgba(102, 113, 63, 0.25);
}

.tour-itinerary-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 80px 1fr;
    gap: 19px;
    padding-bottom: 35px;
}

.tour-itinerary-item:last-child {
    padding-bottom: 0;
}

.tour-itinerary-marker {
    position: relative;
    z-index: 2;
}

.tour-itinerary-marker span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 5px solid var(--background);
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.tour-itinerary-time {
    padding-top: 17px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
}

.tour-itinerary-content {
    padding: 17px 21px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(31, 39, 27, 0.05);
}

.tour-itinerary-content h3 {
    margin-bottom: 6px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 21px;
}

.tour-itinerary-content p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   38. UKLJUČENO / NIJE UKLJUČENO
   ========================================================= */

.tour-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tour-list-box {
    padding: 31px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(31, 39, 27, 0.06);
}

.tour-list-box h3 {
    margin-bottom: 23px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 27px;
}

.tour-list-box ul {
    display: grid;
    gap: 12px;
}

.tour-list-box li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--text);
    font-size: 13px;
}

.tour-list-box li span {
    font-weight: 900;
}

.tour-list-box-included li span {
    color: var(--primary);
}

.tour-list-box-excluded li span {
    color: #a45345;
}


/* =========================================================
   39. OPREMA
   ========================================================= */

.tour-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.tour-equipment-grid article {
    min-height: 120px;
    padding: 22px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 12px;
    background: var(--white);
}

.tour-equipment-grid span {
    display: block;
    margin-bottom: 19px;
    color: var(--secondary);
    font-size: 20px;
}

.tour-equipment-grid p {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   40. GALERIJA
   ========================================================= */

.single-tour-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(3, 190px);
    gap: 14px;
}

.tour-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.tour-gallery-item-large {
    grid-row: span 3;
}

.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.tour-gallery-item:hover img {
    transform: scale(1.07);
}

.tour-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.66),
            transparent 62%
        );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-gallery-item:hover::after {
    opacity: 1;
}

.tour-gallery-item span {
    position: absolute;
    right: 17px;
    bottom: 14px;
    left: 17px;
    z-index: 2;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(7px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.tour-gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   41. DODATNE INFORMACIJE
   ========================================================= */

.tour-information-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tour-information-grid article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 13px 35px rgba(31, 39, 27, 0.05);
}

.tour-information-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
}

.tour-information-grid h3 {
    margin-bottom: 7px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 22px;
}

.tour-information-grid p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   42. SIDEBAR
   ========================================================= */

.single-tour-sidebar {
    position: sticky;
    top: 105px;
}

.tour-booking-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 25px 65px rgba(14, 20, 12, 0.17);
}

.tour-booking-card-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(210, 189, 114, 0.14);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-booking-card h2 {
    margin-bottom: 13px;
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.18;
}

.tour-booking-card > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.tour-booking-price {
    margin: 25px 0;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.tour-booking-price span,
.tour-booking-price strong,
.tour-booking-price small {
    display: block;
}

.tour-booking-price span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.tour-booking-price strong {
    margin: 2px 0;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
}

.tour-booking-price small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.tour-booking-details {
    display: grid;
    gap: 11px;
    margin-bottom: 25px;
}

.tour-booking-details li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.tour-booking-details strong {
    color: var(--white);
    text-align: right;
}

.tour-sidebar-button {
    width: 100%;
}

.tour-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.tour-help-card {
    margin-top: 20px;
    padding: 28px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--white);
}

.tour-help-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 17px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 900;
}

.tour-help-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.tour-help-card p {
    margin-bottom: 17px;
    color: var(--text-light);
    font-size: 13px;
}

.tour-help-card a {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.tour-help-card a + a {
    margin-top: 5px;
}


/* =========================================================
   43. POVEZANE TURE
   ========================================================= */

.related-tours-section {
    background: var(--white);
}

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-tour-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.related-tour-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(31, 39, 27, 0.12);
}

.related-tour-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
}

.related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.related-tour-card:hover img {
    transform: scale(1.07);
}

.related-tour-image > span {
    position: absolute;
    right: 17px;
    bottom: 16px;
    padding: 8px 11px;
    border-radius: 7px;
    background: rgba(12, 17, 10, 0.83);
    color: var(--white);
    font-size: 10px;
}

.related-tour-image strong {
    color: var(--secondary);
    font-size: 16px;
}

.related-tour-content {
    padding: 25px;
}

.related-tour-content small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.related-tour-content h3 {
    margin: 8px 0 11px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.2;
}

.related-tour-content p {
    min-height: 70px;
    color: var(--text-light);
    font-size: 13px;
}

.related-tour-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 19px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}


/* =========================================================
   44. ZAVRŠNI CTA
   ========================================================= */

.single-tour-final-cta {
    padding: 90px 0;
    background: var(--primary);
    color: var(--white);
}

.single-tour-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.single-tour-final-cta-inner > div {
    max-width: 780px;
}

.single-tour-final-cta h2 {
    margin-bottom: 13px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.single-tour-final-cta p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   45. TURA NIJE PRONAĐENA
   ========================================================= */

.tour-not-found {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 100px 0;
    background: var(--background);
}

.tour-not-found-inner {
    max-width: 750px;
    text-align: center;
}

.tour-not-found-inner .section-eyebrow {
    justify-content: center;
}

.tour-not-found-code {
    display: block;
    margin-bottom: 5px;
    color: rgba(102, 113, 63, 0.12);
    font-family: var(--font-heading);
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
}

.tour-not-found h1 {
    margin-bottom: 17px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 67px);
    line-height: 1.1;
}

.tour-not-found p:not(.section-eyebrow) {
    max-width: 570px;
    margin: 0 auto 28px;
    color: var(--text-light);
}


/* =========================================================
   46. RESPONSIVE – POJEDINAČNA TURA
   ========================================================= */

@media (max-width: 1180px) {

    .single-tour-summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-tour-summary article:nth-child(3) {
        border-right: 0;
    }

    .tour-summary-price {
        grid-column: span 2;
    }

    .single-tour-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 40px;
    }

    .related-tours-grid {
        gap: 18px;
    }
}


@media (max-width: 920px) {

    .single-tour-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-tour-summary article:nth-child(3) {
        border-right: 1px solid rgba(20, 25, 18, 0.08);
    }

    .single-tour-summary article:nth-child(even) {
        border-right: 0;
    }

    .tour-summary-price {
        grid-column: span 2;
    }

    .single-tour-layout {
        grid-template-columns: 1fr;
    }

    .single-tour-sidebar {
        position: static;
    }

    .tour-booking-card,
    .tour-help-card {
        max-width: 620px;
    }

    .related-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-tour-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .single-tour-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 720px) {

    .single-tour-hero {
        min-height: 650px;
        padding: 110px 0 80px;
    }

    .single-tour-hero h1 {
        font-size: clamp(48px, 13vw, 70px);
        letter-spacing: -2px;
    }

    .single-tour-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .single-tour-hero-actions .button {
        width: 100%;
    }

    .single-tour-summary-grid {
        grid-template-columns: 1fr;
    }

    .single-tour-summary article,
    .single-tour-summary article:nth-child(3),
    .single-tour-summary article:nth-child(even) {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .tour-summary-price {
        grid-column: auto;
        border-bottom: 0 !important;
    }

    .tour-highlights-grid,
    .tour-included-grid,
    .tour-information-grid {
        grid-template-columns: 1fr;
    }

    .tour-itinerary-item {
        grid-template-columns: 52px 1fr;
    }

    .tour-itinerary-time {
        grid-column: 2;
        padding-top: 0;
    }

    .tour-itinerary-content {
        grid-column: 2;
    }

    .tour-itinerary::before {
        left: 25px;
    }

    .tour-itinerary-marker span {
        width: 52px;
        height: 52px;
    }

    .tour-equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-tour-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 280px);
    }

    .tour-gallery-item-large {
        grid-row: auto;
    }

    .related-tours-grid {
        grid-template-columns: 1fr;
    }

    .related-tour-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}


@media (max-width: 520px) {

    .single-tour-section {
        margin-bottom: 70px;
    }

    .tour-equipment-grid {
        grid-template-columns: 1fr;
    }

    .tour-list-box,
    .tour-booking-card,
    .tour-help-card {
        padding: 25px;
    }

    .tour-itinerary-item {
        gap: 12px;
    }

    .single-tour-gallery {
        grid-template-rows: repeat(4, 230px);
    }

    .single-tour-final-cta a {
        width: 100%;
    }
}

/* =========================================================
   47. RENT-A-SUV HERO
   ========================================================= */

.rent-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 140px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.rent-page-hero-background,
.rent-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.rent-page-hero-background {
    background-image: url("../images/vehicles/rent-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.rent-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.94) 0%,
            rgba(7, 11, 6, 0.76) 50%,
            rgba(7, 11, 6, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.65),
            transparent 55%
        );
}

.rent-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 930px;
}

.rent-page-hero h1 {
    max-width: 920px;
    margin-bottom: 26px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.rent-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.rent-page-hero-content > p:not(.section-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.rent-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.rent-page-hero-card {
    position: absolute;
    right: max(24px, calc((100% - var(--container-width)) / 2));
    bottom: 70px;
    z-index: 3;
    width: 225px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(17, 23, 15, 0.8);
    text-align: center;
    backdrop-filter: blur(14px);
}

.rent-page-hero-card span,
.rent-page-hero-card strong,
.rent-page-hero-card small {
    display: block;
}

.rent-page-hero-card span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    text-transform: uppercase;
}

.rent-page-hero-card strong {
    margin: 5px 0;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1;
}

.rent-page-hero-card small {
    color: rgba(255, 255, 255, 0.5);
}


/* =========================================================
   48. RENT PREDNOSTI
   ========================================================= */

.rent-benefits-section {
    background: var(--dark);
    color: var(--white);
}

.rent-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.rent-benefits-grid article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 115px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rent-benefits-grid article:last-child {
    border-right: 0;
}

.rent-benefits-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(210, 189, 114, 0.13);
    color: var(--secondary);
}

.rent-benefits-grid strong,
.rent-benefits-grid small {
    display: block;
}

.rent-benefits-grid strong {
    color: var(--white);
    font-size: 13px;
}

.rent-benefits-grid small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}


/* =========================================================
   49. FILTERI VOZILA
   ========================================================= */

.vehicles-listing-section {
    background: var(--background);
}

.vehicle-results-counter {
    padding: 14px 18px;
    border-radius: 9px;
    background: var(--white);
    color: var(--text-light);
    font-size: 13px;
    box-shadow: 0 10px 35px rgba(31, 39, 27, 0.06);
}

.vehicle-results-counter strong {
    color: var(--primary);
    font-size: 19px;
}

.vehicle-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.06);
}

.vehicle-filter-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.vehicle-filter-group select {
    width: 100%;
    height: 50px;
    padding: 0 42px 0 15px;
    border: 1px solid rgba(20, 25, 18, 0.13);
    border-radius: 7px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.vehicle-filter-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 113, 63, 0.12);
}

.vehicle-reset-button {
    height: 50px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vehicle-reset-button:hover {
    background: var(--primary);
}


/* =========================================================
   50. KARTICE VOZILA
   ========================================================= */

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.vehicle-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 17px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.vehicle-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 70px rgba(31, 39, 27, 0.13);
}

.vehicle-card.is-hidden {
    display: none;
}

.vehicle-card-image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.06);
}

.vehicle-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.65),
            transparent 60%
        );
}

.vehicle-badge,
.vehicle-status {
    position: absolute;
    z-index: 2;
}

.vehicle-badge {
    top: 17px;
    left: 17px;
    padding: 7px 11px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.vehicle-status {
    right: 17px;
    bottom: 17px;
    padding: 7px 11px;
    border-radius: 50px;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
}

.vehicle-status.is-available {
    background: rgba(61, 124, 67, 0.9);
}

.vehicle-status.is-unavailable {
    background: rgba(146, 66, 55, 0.9);
}

.vehicle-card-content {
    padding: 27px;
}

.vehicle-card-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
}

.vehicle-card-topline > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.vehicle-card-price {
    text-align: right;
    color: var(--text-light);
    font-size: 10px;
}

.vehicle-card-price strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 24px;
}

.vehicle-card-price small {
    display: block;
}

.vehicle-card h3 {
    margin-bottom: 11px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.2;
}

.vehicle-card h3 a:hover {
    color: var(--primary);
}

.vehicle-card-content > p {
    min-height: 72px;
    color: var(--text-light);
    font-size: 13px;
}

.vehicle-specifications {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 22px 0;
    padding: 17px 0;
    border-top: 1px solid rgba(20, 25, 18, 0.08);
    border-bottom: 1px solid rgba(20, 25, 18, 0.08);
}

.vehicle-specifications span {
    text-align: center;
}

.vehicle-specifications small,
.vehicle-specifications strong {
    display: block;
}

.vehicle-specifications small {
    color: var(--text-light);
    font-size: 9px;
}

.vehicle-specifications strong {
    color: var(--dark);
    font-size: 11px;
}

.vehicle-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.vehicle-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}

.vehicle-details-link span {
    font-size: 18px;
}

.vehicle-book-button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 11px;
}

.vehicle-unavailable-button {
    padding: 11px 14px;
    border-radius: 7px;
    background: rgba(20, 25, 18, 0.08);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
}


/* =========================================================
   51. NEMA VOZILA
   ========================================================= */

.no-vehicle-results {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 55px 30px;
    border-radius: 15px;
    background: var(--white);
    text-align: center;
}

.no-vehicle-results[hidden] {
    display: none;
}

.no-vehicle-results > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    font-size: 28px;
}

.no-vehicle-results h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 29px;
}

.no-vehicle-results p {
    max-width: 440px;
    margin: 0 auto 23px;
    color: var(--text-light);
}


/* =========================================================
   52. CJENOVNIK
   ========================================================= */

.vehicle-pricing-section {
    background: var(--white);
}

.vehicle-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.vehicle-pricing-grid article {
    position: relative;
    min-height: 260px;
    padding: 34px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--background);
}

.vehicle-pricing-grid article.is-featured {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-13px);
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-period {
    display: block;
    margin-bottom: 38px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.is-featured .pricing-period {
    color: var(--secondary);
}

.vehicle-pricing-grid strong {
    display: block;
    margin-bottom: 13px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.2;
}

.vehicle-pricing-grid .is-featured strong {
    color: var(--white);
}

.vehicle-pricing-grid p {
    color: var(--text-light);
    font-size: 14px;
}

.vehicle-pricing-grid .is-featured p {
    color: rgba(255, 255, 255, 0.7);
}

.vehicle-pricing-note {
    max-width: 760px;
    margin: 35px auto 0;
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
}


/* =========================================================
   53. USLOVI NAJMA
   ========================================================= */

.rental-conditions-section {
    background: var(--background);
}

.rental-conditions-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
}

.rental-conditions-heading {
    align-self: center;
}

.rental-conditions-heading h2 {
    margin-bottom: 22px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.rental-conditions-heading h2 span {
    display: block;
    color: var(--primary);
}

.rental-conditions-heading > p:not(.section-eyebrow) {
    margin-bottom: 28px;
    color: var(--text-light);
}

.rental-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.rental-conditions-grid article {
    min-height: 215px;
    padding: 27px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(31, 39, 27, 0.05);
}

.rental-conditions-grid article > span {
    display: block;
    margin-bottom: 28px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 28px;
}

.rental-conditions-grid h3 {
    margin-bottom: 9px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 22px;
}

.rental-conditions-grid p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   54. RENT FINALNI CTA
   ========================================================= */

.rent-page-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.rent-page-final-background,
.rent-page-final-overlay {
    position: absolute;
    inset: 0;
}

.rent-page-final-background {
    background-image: url("../images/vehicles/rent-hero.jpg");
    background-position: center;
    background-size: cover;
}

.rent-page-final-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.95),
            rgba(7, 11, 6, 0.75)
        );
}

.rent-page-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.rent-page-final-inner > div:first-child {
    max-width: 780px;
}

.rent-page-final-inner h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 63px);
    line-height: 1.08;
}

.rent-page-final-inner h2 span {
    display: block;
    color: var(--secondary);
}

.rent-page-final-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.rent-page-final-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   55. RESPONSIVE RENT-A-SUV
   ========================================================= */

@media (max-width: 1180px) {

    .vehicle-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-reset-button {
        grid-column: span 2;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-conditions-layout {
        gap: 50px;
    }
}


@media (max-width: 920px) {

    .rent-page-hero-card {
        display: none;
    }

    .rent-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rent-benefits-grid article:nth-child(2) {
        border-right: 0;
    }

    .rent-benefits-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vehicle-pricing-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-pricing-grid article.is-featured {
        transform: none;
    }

    .rental-conditions-layout {
        grid-template-columns: 1fr;
    }

    .rental-conditions-heading {
        max-width: 720px;
    }

    .rent-page-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .rent-page-final-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .rent-page-hero {
        min-height: 610px;
        padding: 100px 0 85px;
    }

    .rent-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .rent-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .rent-page-hero-actions .button {
        width: 100%;
    }

    .vehicle-filters {
        grid-template-columns: 1fr;
    }

    .vehicle-reset-button {
        grid-column: auto;
    }

    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .rental-conditions-grid {
        grid-template-columns: 1fr;
    }

    .rent-page-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .rent-page-final-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .rent-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rent-benefits-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .rent-benefits-grid article:last-child {
        border-bottom: 0;
    }

    .vehicle-card-image {
        height: 250px;
    }

    .vehicle-specifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vehicle-card-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vehicle-book-button,
    .vehicle-unavailable-button {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   56. DETALJI VOZILA – HERO GALERIJA
   ========================================================= */

.single-vehicle-hero {
    padding: 55px 0 0;
    background: var(--background);
}

.vehicle-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 12px;
}

.vehicle-breadcrumbs a {
    transition: color 0.2s ease;
}

.vehicle-breadcrumbs a:hover {
    color: var(--primary);
}

.single-vehicle-gallery {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    gap: 15px;
    height: 620px;
}

.single-vehicle-gallery-main,
.single-vehicle-gallery-side a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

.single-vehicle-gallery-main img,
.single-vehicle-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.single-vehicle-gallery-main:hover img,
.single-vehicle-gallery-side a:hover img {
    transform: scale(1.05);
}

.single-vehicle-gallery-main::after,
.single-vehicle-gallery-side a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.58),
            transparent 55%
        );
}

.single-vehicle-gallery-main > span {
    position: absolute;
    right: 25px;
    bottom: 22px;
    z-index: 2;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.single-vehicle-gallery-side {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
}

.single-vehicle-gallery-side a > span {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 13, 7, 0.62);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   57. NASLOV VOZILA
   ========================================================= */

.single-vehicle-header {
    padding: 55px 0 45px;
    background: var(--white);
}

.single-vehicle-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.single-vehicle-header-inner > div:first-child {
    max-width: 850px;
}

.single-vehicle-topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.single-vehicle-category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-vehicle-status {
    padding: 6px 11px;
    border-radius: 50px;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.single-vehicle-status.is-available {
    background: #4c8551;
}

.single-vehicle-status.is-unavailable {
    background: #a34f43;
}

.single-vehicle-header h1 {
    margin-bottom: 15px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1;
    letter-spacing: -2px;
}

.single-vehicle-header-inner > div:first-child > p {
    max-width: 760px;
    color: var(--text-light);
    font-size: 17px;
}

.single-vehicle-header-price {
    flex-shrink: 0;
    min-width: 210px;
    padding: 22px 27px;
    border-radius: 13px;
    background: var(--primary);
    text-align: center;
}

.single-vehicle-header-price small,
.single-vehicle-header-price strong,
.single-vehicle-header-price span {
    display: block;
}

.single-vehicle-header-price small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-transform: uppercase;
}

.single-vehicle-header-price strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
}

.single-vehicle-header-price span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}


/* =========================================================
   58. SPECIFIKACIJE BAR
   ========================================================= */

.single-vehicle-specification-bar {
    border-top: 1px solid rgba(20, 25, 18, 0.07);
    border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    background: var(--white);
}

.single-vehicle-specification-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.single-vehicle-specification-grid article {
    min-height: 120px;
    padding: 21px;
    border-right: 1px solid rgba(20, 25, 18, 0.08);
    text-align: center;
}

.single-vehicle-specification-grid article:last-child {
    border-right: 0;
}

.single-vehicle-specification-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
}

.single-vehicle-specification-grid small,
.single-vehicle-specification-grid strong {
    display: block;
}

.single-vehicle-specification-grid small {
    color: var(--text-light);
    font-size: 9px;
    text-transform: uppercase;
}

.single-vehicle-specification-grid strong {
    color: var(--dark);
    font-size: 12px;
}


/* =========================================================
   59. GLAVNI LAYOUT
   ========================================================= */

.single-vehicle-content-section {
    background: var(--background);
}

.single-vehicle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 70px;
}

.single-vehicle-main {
    min-width: 0;
}

.single-vehicle-section {
    margin-bottom: 95px;
}

.single-vehicle-section:last-child {
    margin-bottom: 0;
}

.single-vehicle-section h2 {
    max-width: 780px;
    margin-bottom: 25px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1.14;
}

.single-vehicle-section > p:not(.section-eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
}


/* =========================================================
   60. TABELA SPECIFIKACIJA
   ========================================================= */

.vehicle-specification-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--white);
}

.vehicle-specification-table > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(20, 25, 18, 0.07);
}

.vehicle-specification-table > div:nth-child(odd) {
    border-right: 1px solid rgba(20, 25, 18, 0.07);
}

.vehicle-specification-table > div:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.vehicle-specification-table span {
    color: var(--text-light);
    font-size: 12px;
}

.vehicle-specification-table strong {
    color: var(--dark);
    font-size: 13px;
    text-align: right;
}


/* =========================================================
   61. OPREMA
   ========================================================= */

.vehicle-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.vehicle-feature-grid article,
.vehicle-included-list article {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 72px;
    padding: 18px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(31, 39, 27, 0.04);
}

.vehicle-feature-grid article > span,
.vehicle-included-list article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.vehicle-feature-grid p,
.vehicle-included-list p {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.vehicle-included-list {
    display: grid;
    gap: 12px;
}


/* =========================================================
   62. DODATNA OPREMA
   ========================================================= */

.vehicle-additional-equipment {
    display: grid;
    gap: 12px;
}

.vehicle-additional-equipment article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 23px;
    border-radius: 11px;
    background: var(--white);
}

.vehicle-additional-equipment article > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.vehicle-additional-equipment article > div > span {
    color: var(--secondary);
}

.vehicle-additional-equipment strong {
    color: var(--dark);
    font-size: 14px;
}

.vehicle-additional-equipment p {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   63. CJENOVNIK VOZILA
   ========================================================= */

.single-vehicle-pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}

.single-vehicle-pricing-table article {
    padding: 24px 17px;
    border-radius: 11px;
    background: var(--white);
    text-align: center;
}

.single-vehicle-pricing-table span,
.single-vehicle-pricing-table strong,
.single-vehicle-pricing-table small {
    display: block;
}

.single-vehicle-pricing-table span {
    margin-bottom: 17px;
    color: var(--text-light);
    font-size: 11px;
}

.single-vehicle-pricing-table strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 31px;
    line-height: 1;
}

.single-vehicle-pricing-table small {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 9px;
}

.single-vehicle-pricing-note {
    margin-top: 18px;
    font-size: 12px;
}


/* =========================================================
   64. USLOVI NAJMA
   ========================================================= */

.single-vehicle-conditions {
    display: grid;
    gap: 12px;
}

.single-vehicle-conditions article {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 15px;
    min-height: 76px;
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--white);
}

.single-vehicle-conditions article > span {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 24px;
}

.single-vehicle-conditions p {
    color: var(--text);
    font-size: 13px;
}


/* =========================================================
   65. SIDEBAR
   ========================================================= */

.single-vehicle-sidebar {
    position: sticky;
    top: 105px;
}

.vehicle-booking-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 25px 65px rgba(14, 20, 12, 0.17);
}

.vehicle-booking-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(210, 189, 114, 0.14);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.vehicle-booking-card h2 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 31px;
    line-height: 1.18;
}

.vehicle-booking-card > p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.vehicle-booking-price {
    margin: 24px 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.vehicle-booking-price small,
.vehicle-booking-price strong,
.vehicle-booking-price span {
    display: block;
}

.vehicle-booking-price small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}

.vehicle-booking-price strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1;
}

.vehicle-booking-price span {
    color: rgba(255, 255, 255, 0.44);
    font-size: 10px;
}

.vehicle-booking-summary {
    display: grid;
    gap: 11px;
    margin-bottom: 24px;
}

.vehicle-booking-summary li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.vehicle-booking-summary strong {
    color: var(--white);
    text-align: right;
}

.available-text {
    color: #82ca88 !important;
}

.unavailable-text {
    color: #e39184 !important;
}

.vehicle-sidebar-button {
    width: 100%;
}

.vehicle-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.vehicle-sidebar-unavailable {
    padding: 17px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
}

.vehicle-sidebar-unavailable a {
    display: block;
    margin-top: 7px;
    color: var(--secondary);
    font-weight: 800;
}

.vehicle-contact-card {
    margin-top: 20px;
    padding: 28px;
    border-radius: 14px;
    background: var(--white);
}

.vehicle-contact-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 900;
}

.vehicle-contact-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.vehicle-contact-card p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 13px;
}

.vehicle-contact-card a {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   66. SLIČNA VOZILA
   ========================================================= */

.related-vehicles-section {
    background: var(--white);
}

.related-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.related-vehicle-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.related-vehicle-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(31, 39, 27, 0.12);
}

.related-vehicle-image {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
}

.related-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.related-vehicle-card:hover img {
    transform: scale(1.06);
}

.related-vehicle-status {
    position: absolute;
    right: 16px;
    bottom: 15px;
    padding: 7px 10px;
    border-radius: 50px;
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.related-vehicle-status.is-available {
    background: rgba(67, 126, 73, 0.92);
}

.related-vehicle-status.is-unavailable {
    background: rgba(157, 73, 62, 0.92);
}

.related-vehicle-content {
    padding: 24px;
}

.related-vehicle-content > small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.related-vehicle-content h3 {
    margin: 7px 0 13px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
}

.related-vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-vehicle-meta span {
    padding: 6px 9px;
    border-radius: 50px;
    background: var(--background);
    color: var(--text-light);
    font-size: 9px;
}

.related-vehicle-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 19px;
    padding-top: 17px;
    border-top: 1px solid rgba(20, 25, 18, 0.08);
}

.related-vehicle-bottom p {
    color: var(--text-light);
    font-size: 10px;
}

.related-vehicle-bottom strong {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 22px;
}

.related-vehicle-bottom a {
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}


/* =========================================================
   67. ZAVRŠNI CTA
   ========================================================= */

.single-vehicle-final-cta {
    padding: 90px 0;
    background: var(--primary);
    color: var(--white);
}

.single-vehicle-final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.single-vehicle-final-inner > div {
    max-width: 760px;
}

.single-vehicle-final-inner h2 {
    margin-bottom: 13px;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.single-vehicle-final-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   68. VOZILO NIJE PRONAĐENO
   ========================================================= */

.vehicle-not-found {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 100px 0;
    background: var(--background);
}

.vehicle-not-found-inner {
    max-width: 760px;
    text-align: center;
}

.vehicle-not-found-inner .section-eyebrow {
    justify-content: center;
}

.vehicle-not-found-code {
    display: block;
    color: rgba(102, 113, 63, 0.12);
    font-family: var(--font-heading);
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
}

.vehicle-not-found h1 {
    margin-bottom: 17px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 67px);
    line-height: 1.1;
}

.vehicle-not-found p:not(.section-eyebrow) {
    max-width: 570px;
    margin: 0 auto 28px;
    color: var(--text-light);
}


/* =========================================================
   69. RESPONSIVE – DETALJI VOZILA
   ========================================================= */

@media (max-width: 1180px) {

    .single-vehicle-gallery {
        height: 540px;
    }

    .single-vehicle-specification-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-vehicle-specification-grid article:nth-child(3) {
        border-right: 0;
    }

    .single-vehicle-specification-grid article:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .single-vehicle-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 40px;
    }

    .single-vehicle-pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 920px) {

    .single-vehicle-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .single-vehicle-gallery-main {
        height: 500px;
    }

    .single-vehicle-gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 190px;
    }

    .single-vehicle-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-vehicle-layout {
        grid-template-columns: 1fr;
    }

    .single-vehicle-sidebar {
        position: static;
    }

    .vehicle-booking-card,
    .vehicle-contact-card {
        max-width: 620px;
    }

    .related-vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-vehicle-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .single-vehicle-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 720px) {

    .single-vehicle-hero {
        padding-top: 35px;
    }

    .single-vehicle-gallery-main {
        height: 380px;
    }

    .single-vehicle-gallery-side {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .single-vehicle-header h1 {
        font-size: clamp(45px, 13vw, 68px);
    }

    .single-vehicle-header-price {
        width: 100%;
    }

    .single-vehicle-specification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-vehicle-specification-grid article:nth-child(3) {
        border-right: 1px solid rgba(20, 25, 18, 0.08);
    }

    .single-vehicle-specification-grid article:nth-child(even) {
        border-right: 0;
    }

    .single-vehicle-specification-grid article:nth-child(-n + 4) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .vehicle-specification-table,
    .vehicle-feature-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-specification-table > div:nth-child(odd) {
        border-right: 0;
    }

    .vehicle-specification-table > div:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.07);
    }

    .vehicle-specification-table > div:last-child {
        border-bottom: 0;
    }

    .related-vehicles-grid {
        grid-template-columns: 1fr;
    }

    .related-vehicle-card:last-child {
        grid-column: auto;
        max-width: none;
    }
}


@media (max-width: 520px) {

    .single-vehicle-gallery-main {
        height: 300px;
    }

    .single-vehicle-gallery-side {
        grid-template-rows: repeat(3, 180px);
    }

    .single-vehicle-section {
        margin-bottom: 70px;
    }

    .single-vehicle-pricing-table {
        grid-template-columns: 1fr;
    }

    .vehicle-additional-equipment article {
        align-items: flex-start;
        flex-direction: column;
    }

    .vehicle-booking-card,
    .vehicle-contact-card {
        padding: 25px;
    }

    .single-vehicle-final-cta a {
        width: 100%;
    }
}

/* =========================================================
   70. O NAMA – HERO
   ========================================================= */

.about-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 690px;
    padding: 140px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.about-page-hero-background,
.about-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-page-hero-background {
    background-image:
        url("../images/about/about-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.about-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.94) 0%,
            rgba(7, 11, 6, 0.75) 50%,
            rgba(7, 11, 6, 0.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.7),
            transparent 55%
        );
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.about-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.about-breadcrumbs a:hover {
    color: var(--secondary);
}

.about-page-hero h1 {
    max-width: 950px;
    margin-bottom: 26px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 7.2vw, 102px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.about-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.about-page-hero-content > p:not(.section-eyebrow) {
    max-width: 730px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.about-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.about-hero-experience {
    position: absolute;
    right: max(25px, calc((100% - var(--container-width)) / 2));
    bottom: 70px;
    z-index: 3;
    width: 225px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;
    background: rgba(18, 24, 16, 0.82);
    text-align: center;
    backdrop-filter: blur(14px);
}

.about-hero-experience strong,
.about-hero-experience span {
    display: block;
}

.about-hero-experience strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 1;
}

.about-hero-experience span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   71. STATISTIKA
   ========================================================= */

.about-statistics-section {
    background: var(--dark);
    color: var(--white);
}

.about-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-statistics-grid article {
    position: relative;
    min-height: 125px;
    padding: 30px;
    text-align: center;
}

.about-statistics-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.about-statistics-grid strong,
.about-statistics-grid span {
    display: block;
}

.about-statistics-grid strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1;
}

.about-statistics-grid span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   72. NAŠA PRIČA
   ========================================================= */

.about-story-section {
    background: var(--background);
}

.about-story-layout {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 90px;
}

.about-story-image {
    position: relative;
}

.about-story-image > img {
    width: 100%;
    height: 680px;
    border-radius: 18px;
    object-fit: cover;
}

.about-story-image-card {
    position: absolute;
    right: -30px;
    bottom: 45px;
    width: 220px;
    padding: 25px;
    border-radius: 14px;
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.about-story-image-card span,
.about-story-image-card strong,
.about-story-image-card small {
    display: block;
}

.about-story-image-card span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-story-image-card strong {
    margin: 2px 0;
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
}

.about-story-image-card small {
    font-weight: 700;
}

.about-story-content h2 {
    margin-bottom: 25px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.1;
}

.about-story-content h2 span {
    color: var(--primary);
}

.about-story-content > p:not(.section-eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
}

.about-story-content blockquote {
    position: relative;
    margin: 30px 0;
    padding: 23px 25px 23px 31px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 10px 10px 0;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
}


/* =========================================================
   73. VRIJEDNOSTI
   ========================================================= */

.about-values-section {
    background: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    position: relative;
    min-height: 340px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 15px;
    background: var(--background);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-7px);
    background: var(--white);
    box-shadow: 0 22px 55px rgba(31, 39, 27, 0.1);
}

.about-value-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(20, 25, 18, 0.08);
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
}

.about-value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
}

.about-value-card:nth-child(even) .about-value-icon {
    background: var(--secondary);
    color: var(--dark);
}

.about-value-card h3 {
    margin-bottom: 13px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
}

.about-value-card p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   74. FLOTA
   ========================================================= */

.about-fleet-section {
    background: var(--primary);
    color: var(--white);
}

.about-fleet-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.about-fleet-content h2 {
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.08;
}

.about-fleet-content h2 span {
    display: block;
    color: var(--secondary);
}

.about-fleet-content > p:not(.section-eyebrow) {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
}

.about-fleet-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin: 32px 0;
}

.about-fleet-features article {
    min-height: 120px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
}

.about-fleet-features strong,
.about-fleet-features span {
    display: block;
}

.about-fleet-features strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 31px;
}

.about-fleet-features span {
    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
}

.about-fleet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.about-fleet-image {
    position: relative;
}

.about-fleet-image > img {
    width: 100%;
    height: 620px;
    border-radius: 18px;
    object-fit: cover;
}

.about-fleet-badge {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 180px;
    padding: 21px;
    border-radius: 13px;
    background: var(--secondary);
    color: var(--dark);
    text-align: center;
}

.about-fleet-badge span,
.about-fleet-badge strong,
.about-fleet-badge small {
    display: block;
}

.about-fleet-badge span {
    font-size: 10px;
    text-transform: uppercase;
}

.about-fleet-badge strong {
    font-family: var(--font-heading);
    font-size: 49px;
    line-height: 1;
}

.about-fleet-badge small {
    font-weight: 800;
}


/* =========================================================
   75. NAČIN RADA
   ========================================================= */

.about-process-section {
    background: var(--background);
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.about-process-grid article {
    min-height: 300px;
    padding: 30px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 15px 42px rgba(31, 39, 27, 0.05);
}

.about-process-number {
    display: block;
    margin-bottom: 54px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 32px;
}

.about-process-grid h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.about-process-grid p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   76. BEZBJEDNOST
   ========================================================= */

.about-safety-section {
    background: var(--white);
}

.about-safety-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.about-safety-image img {
    width: 100%;
    height: 650px;
    border-radius: 17px;
    object-fit: cover;
}

.about-safety-content h2 {
    margin-bottom: 24px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 61px);
    line-height: 1.1;
}

.about-safety-content h2 span {
    color: var(--primary);
}

.about-safety-content > p:not(.section-eyebrow) {
    margin-bottom: 28px;
    color: var(--text-light);
}

.about-safety-list {
    display: grid;
    gap: 14px;
}

.about-safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 11px;
    background: var(--background);
}

.about-safety-list li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.about-safety-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 14px;
}

.about-safety-list p {
    color: var(--text-light);
    font-size: 12px;
}


/* =========================================================
   77. TIM
   ========================================================= */

.about-team-section {
    background: var(--background);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-team-card {
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(31, 39, 27, 0.12);
}

.about-team-image {
    position: relative;
    height: 410px;
    overflow: hidden;
}

.about-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.about-team-card:hover .about-team-image img {
    transform: scale(1.06);
}

.about-team-image span {
    position: absolute;
    right: 17px;
    bottom: 17px;
    left: 17px;
    padding: 9px 12px;
    border-radius: 8px;
    background: rgba(12, 17, 10, 0.82);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.about-team-content {
    padding: 25px;
}

.about-team-content h3 {
    margin-bottom: 9px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 26px;
}

.about-team-content p {
    color: var(--text-light);
    font-size: 13px;
}

.about-team-note {
    max-width: 760px;
    margin: 30px auto 0;
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
}


/* =========================================================
   78. ZAVRŠNI CTA
   ========================================================= */

.about-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.about-final-cta-background,
.about-final-cta-overlay {
    position: absolute;
    inset: 0;
}

.about-final-cta-background {
    background-image:
        url("../images/about/about-hero.jpg");
    background-position: center;
    background-size: cover;
}

.about-final-cta-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.96),
            rgba(7, 11, 6, 0.73)
        );
}

.about-final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-final-cta-inner > div:first-child {
    max-width: 780px;
}

.about-final-cta h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.about-final-cta h2 span {
    display: block;
    color: var(--secondary);
}

.about-final-cta p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.about-final-cta-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   79. RESPONSIVE – O NAMA
   ========================================================= */

@media (max-width: 1180px) {

    .about-values-grid,
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-layout,
    .about-fleet-layout,
    .about-safety-layout {
        gap: 50px;
    }
}


@media (max-width: 920px) {

    .about-hero-experience {
        display: none;
    }

    .about-statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-statistics-grid article:nth-child(2) {
        border-right: 0;
    }

    .about-statistics-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-story-layout,
    .about-fleet-layout,
    .about-safety-layout {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        max-width: 720px;
    }

    .about-story-image-card {
        right: 25px;
    }

    .about-fleet-content {
        order: 2;
    }

    .about-fleet-image {
        order: 1;
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .about-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-final-cta-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .about-page-hero {
        min-height: 620px;
        padding: 100px 0 85px;
    }

    .about-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .about-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-page-hero-actions .button {
        width: 100%;
    }

    .about-statistics-grid {
        grid-template-columns: 1fr;
    }

    .about-statistics-grid article {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-statistics-grid article:last-child {
        border-bottom: 0;
    }

    .about-story-image > img,
    .about-fleet-image > img,
    .about-safety-image img {
        height: 500px;
    }

    .about-values-grid,
    .about-process-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }

    .about-team-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .about-fleet-features {
        grid-template-columns: 1fr;
    }

    .about-fleet-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-fleet-actions .button {
        width: 100%;
    }

    .about-final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .about-final-cta-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .about-story-image > img,
    .about-fleet-image > img,
    .about-safety-image img {
        height: 410px;
    }

    .about-story-image-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -25px;
        border-radius: 0 0 14px 14px;
    }

    .about-value-card {
        min-height: 310px;
    }

    .about-team-image {
        height: 360px;
    }
}

/* =========================================================
   80. LOKACIJE – HERO
   ========================================================= */

.locations-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 140px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.locations-page-hero-background,
.locations-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.locations-page-hero-background {
    background-image:
        url("../images/locations/locations-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.locations-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.95) 0%,
            rgba(7, 11, 6, 0.75) 50%,
            rgba(7, 11, 6, 0.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.68),
            transparent 55%
        );
}

.locations-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.locations-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.locations-breadcrumbs a:hover {
    color: var(--secondary);
}

.locations-page-hero h1 {
    max-width: 930px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 7.2vw, 102px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.locations-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.locations-page-hero-content > p:not(.section-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.locations-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.locations-hero-card {
    position: absolute;
    right: max(25px, calc((100% - var(--container-width)) / 2));
    bottom: 70px;
    z-index: 3;
    width: 225px;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(17, 23, 15, 0.82);
    text-align: center;
    backdrop-filter: blur(14px);
}

.locations-hero-card strong,
.locations-hero-card span {
    display: block;
}

.locations-hero-card strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1;
}

.locations-hero-card span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    text-transform: uppercase;
}


/* =========================================================
   81. PREDNOSTI LOKACIJA
   ========================================================= */

.locations-benefits-section {
    background: var(--dark);
    color: var(--white);
}

.locations-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.locations-benefits-grid article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 115px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.locations-benefits-grid article:last-child {
    border-right: 0;
}

.locations-benefits-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(210, 189, 114, 0.13);
    color: var(--secondary);
}

.locations-benefits-grid strong,
.locations-benefits-grid small {
    display: block;
}

.locations-benefits-grid strong {
    color: var(--white);
    font-size: 13px;
}

.locations-benefits-grid small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}


/* =========================================================
   82. IZDVOJENE LOKACIJE
   ========================================================= */

.featured-locations-section {
    background: var(--white);
}

.featured-locations-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 300px);
    gap: 18px;
}

.featured-location-card {
    min-width: 0;
}

.featured-location-card-large {
    grid-row: span 2;
}

.featured-location-image {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.featured-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.featured-location-card:hover img {
    transform: scale(1.07);
}

.featured-location-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.82),
            transparent 67%
        );
}

.featured-location-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-location-content {
    position: absolute;
    right: 27px;
    bottom: 25px;
    left: 27px;
    color: var(--white);
}

.featured-location-content small,
.featured-location-content strong,
.featured-location-content em {
    display: block;
}

.featured-location-content small {
    color: var(--secondary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.featured-location-content strong {
    margin: 3px 0;
    font-family: var(--font-heading);
    font-size: 35px;
    line-height: 1.1;
}

.featured-location-card-large .featured-location-content strong {
    font-size: 54px;
}

.featured-location-content em {
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
    font-style: normal;
}


/* =========================================================
   83. FILTERI LOKACIJA
   ========================================================= */

.locations-listing-section {
    background: var(--background);
}

.locations-listing-heading {
    align-items: flex-end;
}

.location-results-counter {
    padding: 14px 18px;
    border-radius: 9px;
    background: var(--white);
    color: var(--text-light);
    font-size: 13px;
    box-shadow: 0 10px 35px rgba(31, 39, 27, 0.06);
}

.location-results-counter strong {
    color: var(--primary);
    font-size: 19px;
}

.location-filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 42px;
    padding: 24px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.06);
}

.location-filter-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.location-filter-group select {
    width: 100%;
    height: 50px;
    padding: 0 42px 0 15px;
    border: 1px solid rgba(20, 25, 18, 0.13);
    border-radius: 7px;
    outline: none;
    background: var(--background);
    color: var(--text);
}

.location-filter-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 113, 63, 0.12);
}

.location-reset-button {
    height: 50px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.location-reset-button:hover {
    background: var(--primary);
}


/* =========================================================
   84. KARTICE LOKACIJA
   ========================================================= */

.all-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.location-listing-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 17px 48px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.location-listing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 27px 68px rgba(31, 39, 27, 0.13);
}

.location-listing-card.is-hidden {
    display: none;
}

.location-listing-image {
    position: relative;
    display: block;
    height: 290px;
    overflow: hidden;
}

.location-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-listing-card:hover .location-listing-image img {
    transform: scale(1.07);
}

.location-listing-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.6),
            transparent 60%
        );
}

.location-listing-badge {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 7px 10px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.location-listing-content {
    padding: 25px;
}

.location-listing-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.location-listing-topline > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.location-listing-topline small {
    padding: 5px 8px;
    border-radius: 50px;
    background: rgba(102, 113, 63, 0.08);
    color: var(--text-light);
    font-size: 9px;
}

.location-listing-content h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 28px;
}

.location-listing-content h3 a:hover {
    color: var(--primary);
}

.location-listing-content > p {
    min-height: 92px;
    color: var(--text-light);
    font-size: 13px;
}

.location-listing-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(20, 25, 18, 0.08);
}

.location-listing-bottom > span {
    color: var(--text-light);
    font-size: 10px;
}

.location-listing-bottom > span strong {
    color: var(--primary);
    font-size: 15px;
}

.location-listing-bottom > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
}

.location-listing-bottom em {
    font-size: 17px;
    font-style: normal;
}


/* =========================================================
   85. NEMA REZULTATA
   ========================================================= */

.no-location-results {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 55px 30px;
    border-radius: 15px;
    background: var(--white);
    text-align: center;
}

.no-location-results[hidden] {
    display: none;
}

.no-location-results > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    font-size: 28px;
}

.no-location-results h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 29px;
}

.no-location-results p {
    max-width: 450px;
    margin: 0 auto 23px;
    color: var(--text-light);
}


/* =========================================================
   86. IZBOR LOKACIJA
   ========================================================= */

.locations-selection-section {
    background: var(--primary);
    color: var(--white);
}

.locations-selection-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 80px;
}

.locations-selection-content h2 {
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.locations-selection-content h2 span {
    display: block;
    color: var(--secondary);
}

.locations-selection-content > p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.locations-selection-features {
    display: grid;
    gap: 13px;
    margin-top: 30px;
}

.locations-selection-features article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.06);
}

.locations-selection-features article > span {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 24px;
}

.locations-selection-features h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.locations-selection-features p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.locations-selection-image {
    position: relative;
}

.locations-selection-image > img {
    width: 100%;
    height: 650px;
    border-radius: 18px;
    object-fit: cover;
}

.locations-selection-badge {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 205px;
    padding: 24px;
    border-radius: 13px;
    background: var(--secondary);
    color: var(--dark);
    text-align: center;
}

.locations-selection-badge strong,
.locations-selection-badge span {
    display: block;
}

.locations-selection-badge strong {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
}

.locations-selection-badge span {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   87. PRIVATNA RUTA CTA
   ========================================================= */

.locations-custom-tour-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.locations-custom-tour-background,
.locations-custom-tour-overlay {
    position: absolute;
    inset: 0;
}

.locations-custom-tour-background {
    background-image:
        url("../images/locations/prokletije.jpg");
    background-position: center;
    background-size: cover;
}

.locations-custom-tour-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.96),
            rgba(7, 11, 6, 0.73)
        );
}

.locations-custom-tour-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.locations-custom-tour-inner > div:first-child {
    max-width: 800px;
}

.locations-custom-tour-inner h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.locations-custom-tour-inner h2 span {
    display: block;
    color: var(--secondary);
}

.locations-custom-tour-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.locations-custom-tour-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   88. RESPONSIVE – LOKACIJE
   ========================================================= */

@media (max-width: 1180px) {

    .all-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-selection-layout {
        gap: 50px;
    }
}


@media (max-width: 920px) {

    .locations-hero-card {
        display: none;
    }

    .locations-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-benefits-grid article:nth-child(2) {
        border-right: 0;
    }

    .locations-benefits-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .featured-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 430px 300px;
    }

    .featured-location-card-large {
        grid-column: span 2;
        grid-row: auto;
    }

    .location-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-reset-button {
        grid-column: span 2;
    }

    .locations-selection-layout {
        grid-template-columns: 1fr;
    }

    .locations-selection-image {
        max-width: 720px;
    }

    .locations-custom-tour-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .locations-custom-tour-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .locations-page-hero {
        min-height: 620px;
        padding: 100px 0 85px;
    }

    .locations-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .locations-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .locations-page-hero-actions .button {
        width: 100%;
    }

    .locations-benefits-grid {
        grid-template-columns: 1fr;
    }

    .locations-benefits-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .locations-benefits-grid article:last-child {
        border-bottom: 0;
    }

    .featured-locations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 340px);
    }

    .featured-location-card-large {
        grid-column: auto;
    }

    .featured-location-card-large .featured-location-content strong {
        font-size: 40px;
    }

    .location-filters {
        grid-template-columns: 1fr;
    }

    .location-reset-button {
        grid-column: auto;
    }

    .all-locations-grid {
        grid-template-columns: 1fr;
    }

    .locations-selection-image > img {
        height: 500px;
    }

    .locations-custom-tour-actions {
        width: 100%;
        flex-direction: column;
    }

    .locations-custom-tour-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .location-listing-image {
        height: 250px;
    }

    .location-listing-topline,
    .location-listing-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .locations-selection-image > img {
        height: 410px;
    }

    .locations-selection-badge {
        right: 15px;
        bottom: 15px;
        width: 180px;
    }
}

/* =========================================================
   89. POJEDINAČNA LOKACIJA – HERO
   ========================================================= */

.single-location-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 740px;
    padding: 150px 0 105px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.single-location-hero-background,
.single-location-hero-overlay {
    position: absolute;
    inset: 0;
}

.single-location-hero-background {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.single-location-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.94) 0%,
            rgba(7, 11, 6, 0.72) 52%,
            rgba(7, 11, 6, 0.2) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.78),
            transparent 62%
        );
}

.single-location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.single-location-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.single-location-breadcrumbs a:hover {
    color: var(--secondary);
}

.single-location-badge {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 8px 12px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.single-location-type {
    margin-bottom: 5px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.single-location-hero h1 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: clamp(62px, 9vw, 125px);
    line-height: 0.92;
    letter-spacing: -4px;
}

.single-location-region {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 13px;
    text-transform: uppercase;
}

.single-location-intro {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.single-location-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}


/* =========================================================
   90. SAŽETAK LOKACIJE
   ========================================================= */

.single-location-summary {
    background: var(--white);
    box-shadow: 0 14px 45px rgba(20, 28, 17, 0.08);
}

.single-location-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.single-location-summary article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 120px;
    padding: 24px;
    border-right: 1px solid rgba(20, 25, 18, 0.08);
}

.single-location-summary article:last-child {
    border-right: 0;
}

.single-location-summary article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
}

.single-location-summary small,
.single-location-summary strong {
    display: block;
}

.single-location-summary small {
    color: var(--text-light);
    font-size: 9px;
    text-transform: uppercase;
}

.single-location-summary strong {
    color: var(--dark);
    font-size: 12px;
}


/* =========================================================
   91. GLAVNI LAYOUT
   ========================================================= */

.single-location-content-section {
    background: var(--background);
}

.single-location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 70px;
}

.single-location-main {
    min-width: 0;
}

.single-location-section {
    margin-bottom: 95px;
}

.single-location-section:last-child {
    margin-bottom: 0;
}

.single-location-section h2 {
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.12;
}

.single-location-section > p:not(.section-eyebrow) {
    margin-bottom: 18px;
    color: var(--text-light);
}


/* =========================================================
   92. GLAVNE ZANIMLJIVOSTI
   ========================================================= */

.location-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.location-highlights-grid article {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 80px;
    padding: 19px;
    border-radius: 11px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(31, 39, 27, 0.04);
}

.location-highlights-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.location-highlights-grid p {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   93. AKTIVNOSTI
   ========================================================= */

.location-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.location-activities-grid article {
    min-height: 230px;
    padding: 28px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(31, 39, 27, 0.05);
}

.location-activity-number {
    display: block;
    margin-bottom: 37px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 30px;
}

.location-activities-grid h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 24px;
}

.location-activities-grid p {
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   94. GALERIJA LOKACIJE
   ========================================================= */

.single-location-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(3, 190px);
    gap: 14px;
}

.single-location-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.single-location-gallery-item.is-large {
    grid-row: span 3;
}

.single-location-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.single-location-gallery-item:hover img {
    transform: scale(1.07);
}

.single-location-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.68),
            transparent 62%
        );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-location-gallery-item:hover::after {
    opacity: 1;
}

.single-location-gallery-item span {
    position: absolute;
    right: 17px;
    bottom: 15px;
    left: 17px;
    z-index: 2;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(7px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.single-location-gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   95. PRAKTIČNE INFORMACIJE
   ========================================================= */

.location-practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.location-practical-grid article {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 150px;
    padding: 25px;
    border-radius: 12px;
    background: var(--white);
}

.location-practical-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
}

.location-practical-grid h3 {
    margin-bottom: 7px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 21px;
}

.location-practical-grid p {
    color: var(--text-light);
    font-size: 12px;
}


/* =========================================================
   96. SIDEBAR
   ========================================================= */

.single-location-sidebar {
    position: sticky;
    top: 105px;
}

.location-sidebar-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 25px 65px rgba(14, 20, 12, 0.17);
}

.location-sidebar-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(210, 189, 114, 0.14);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.location-sidebar-card h2 {
    margin-bottom: 13px;
    font-family: var(--font-heading);
    font-size: 33px;
    line-height: 1.15;
}

.location-sidebar-card > p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.location-sidebar-card ul {
    display: grid;
    gap: 11px;
    margin: 25px 0;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-sidebar-card li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.location-sidebar-card li strong {
    max-width: 58%;
    color: var(--white);
    text-align: right;
}

.location-sidebar-button {
    width: 100%;
}

.location-private-tour-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 17px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.location-help-card {
    margin-top: 20px;
    padding: 28px;
    border-radius: 14px;
    background: var(--white);
}

.location-help-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 900;
}

.location-help-card h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.location-help-card p {
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 13px;
}

.location-help-card a {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.location-help-card a + a {
    margin-top: 5px;
}


/* =========================================================
   97. POVEZANE TURE
   ========================================================= */

.location-related-tours-section {
    background: var(--white);
}

.location-related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.location-related-tour-card {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(31, 39, 27, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.location-related-tour-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(31, 39, 27, 0.12);
}

.location-related-tour-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
}

.location-related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.location-related-tour-card:hover img {
    transform: scale(1.07);
}

.location-related-tour-image > span {
    position: absolute;
    right: 16px;
    bottom: 15px;
    padding: 8px 11px;
    border-radius: 7px;
    background: rgba(10, 15, 8, 0.82);
    color: var(--white);
    font-size: 10px;
}

.location-related-tour-image strong {
    color: var(--secondary);
    font-size: 17px;
}

.location-related-tour-content {
    padding: 25px;
}

.location-related-tour-content small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.location-related-tour-content h3 {
    margin: 8px 0 11px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
}

.location-related-tour-content p {
    min-height: 70px;
    color: var(--text-light);
    font-size: 13px;
}

.location-related-tour-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 19px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 900;
}


/* =========================================================
   98. ZAVRŠNI CTA
   ========================================================= */

.single-location-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.single-location-final-background,
.single-location-final-overlay {
    position: absolute;
    inset: 0;
}

.single-location-final-background {
    background-position: center;
    background-size: cover;
}

.single-location-final-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.96),
            rgba(7, 11, 6, 0.72)
        );
}

.single-location-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.single-location-final-inner > div:first-child {
    max-width: 800px;
}

.single-location-final-inner h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.single-location-final-inner h2 span {
    color: var(--secondary);
}

.single-location-final-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.single-location-final-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   99. LOKACIJA NIJE PRONAĐENA
   ========================================================= */

.location-not-found {
    display: flex;
    align-items: center;
    min-height: 650px;
    padding: 100px 0;
    background: var(--background);
}

.location-not-found-inner {
    max-width: 760px;
    text-align: center;
}

.location-not-found-inner .section-eyebrow {
    justify-content: center;
}

.location-not-found-code {
    display: block;
    color: rgba(102, 113, 63, 0.12);
    font-family: var(--font-heading);
    font-size: 130px;
    font-weight: 700;
    line-height: 1;
}

.location-not-found h1 {
    margin-bottom: 17px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 67px);
    line-height: 1.1;
}

.location-not-found p:not(.section-eyebrow) {
    max-width: 570px;
    margin: 0 auto 28px;
    color: var(--text-light);
}


/* =========================================================
   100. RESPONSIVE – POJEDINAČNA LOKACIJA
   ========================================================= */

@media (max-width: 1180px) {

    .single-location-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 40px;
    }

    .location-related-tours-grid {
        gap: 18px;
    }
}


@media (max-width: 920px) {

    .single-location-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-location-summary article:nth-child(2) {
        border-right: 0;
    }

    .single-location-summary article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .single-location-layout {
        grid-template-columns: 1fr;
    }

    .single-location-sidebar {
        position: static;
    }

    .location-sidebar-card,
    .location-help-card {
        max-width: 620px;
    }

    .location-related-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-related-tour-card:last-child {
        grid-column: span 2;
        max-width: 560px;
        width: 100%;
        margin-inline: auto;
    }

    .single-location-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-location-final-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .single-location-hero {
        min-height: 650px;
        padding: 110px 0 80px;
    }

    .single-location-hero h1 {
        font-size: clamp(55px, 16vw, 82px);
        letter-spacing: -2px;
    }

    .single-location-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .single-location-hero-actions .button {
        width: 100%;
    }

    .single-location-summary-grid {
        grid-template-columns: 1fr;
    }

    .single-location-summary article {
        border-right: 0;
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .single-location-summary article:last-child {
        border-bottom: 0;
    }

    .location-highlights-grid,
    .location-activities-grid,
    .location-practical-grid {
        grid-template-columns: 1fr;
    }

    .single-location-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 280px);
    }

    .single-location-gallery-item.is-large {
        grid-row: auto;
    }

    .location-related-tours-grid {
        grid-template-columns: 1fr;
    }

    .location-related-tour-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .single-location-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .single-location-final-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .single-location-section {
        margin-bottom: 70px;
    }

    .single-location-gallery {
        grid-template-rows: repeat(4, 230px);
    }

    .location-sidebar-card,
    .location-help-card {
        padding: 25px;
    }

    .location-activities-grid article {
        min-height: auto;
    }
}

/* =========================================================
   101. GALERIJA – HERO
   ========================================================= */

.gallery-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 140px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.gallery-page-hero-background,
.gallery-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.gallery-page-hero-background {
    background-image:
        url("../images/gallery/gallery-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.gallery-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.95) 0%,
            rgba(7, 11, 6, 0.74) 50%,
            rgba(7, 11, 6, 0.23) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.7),
            transparent 55%
        );
}

.gallery-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.gallery-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.gallery-breadcrumbs a:hover {
    color: var(--secondary);
}

.gallery-page-hero h1 {
    max-width: 940px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 7.2vw, 102px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.gallery-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.gallery-page-hero-content > p:not(.section-eyebrow) {
    max-width: 730px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.gallery-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.gallery-hero-counter {
    position: absolute;
    right: max(25px, calc((100% - var(--container-width)) / 2));
    bottom: 70px;
    z-index: 3;
    width: 225px;
    padding: 29px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(17, 23, 15, 0.82);
    text-align: center;
    backdrop-filter: blur(14px);
}

.gallery-hero-counter strong,
.gallery-hero-counter span {
    display: block;
}

.gallery-hero-counter strong {
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1;
}

.gallery-hero-counter span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* =========================================================
   102. KATEGORIJE GALERIJE
   ========================================================= */

.gallery-category-section {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 22px 65px rgba(21, 30, 17, 0.16);
}

.gallery-category-button {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 105px;
    padding: 20px;
    border-right: 1px solid rgba(20, 25, 18, 0.08);
    background: var(--white);
    color: var(--dark);
    text-align: left;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.gallery-category-button:last-child {
    border-right: 0;
}

.gallery-category-button:hover,
.gallery-category-button.is-active {
    background: var(--primary);
    color: var(--white);
}

.gallery-category-button > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.gallery-category-button:hover > span,
.gallery-category-button.is-active > span {
    background: var(--secondary);
    color: var(--dark);
}

.gallery-category-button strong,
.gallery-category-button small {
    display: block;
}

.gallery-category-button strong {
    margin-bottom: 2px;
    font-size: 12px;
}

.gallery-category-button small {
    color: var(--text-light);
    font-size: 9px;
}

.gallery-category-button:hover small,
.gallery-category-button.is-active small {
    color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   103. GLAVNA GALERIJA
   ========================================================= */

.gallery-listing-section {
    padding-top: 125px;
    background: var(--background);
}

.gallery-results-counter {
    flex-shrink: 0;
    padding: 14px 18px;
    border-radius: 9px;
    background: var(--white);
    color: var(--text-light);
    font-size: 13px;
    box-shadow: 0 10px 35px rgba(31, 39, 27, 0.06);
}

.gallery-results-counter strong {
    color: var(--primary);
    font-size: 19px;
}

.gallery-filter-mobile {
    display: none;
    margin-bottom: 30px;
}

.gallery-filter-mobile label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.gallery-filter-mobile select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid rgba(20, 25, 18, 0.13);
    border-radius: 8px;
    outline: none;
    background: var(--white);
}

.main-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: dense;
    grid-auto-rows: 115px;
    gap: 15px;
}

.main-gallery-item {
    grid-column: span 4;
    grid-row: span 3;
    min-width: 0;
}

.main-gallery-item-large {
    grid-column: span 8;
    grid-row: span 5;
}

.main-gallery-item-wide {
    grid-column: span 8;
    grid-row: span 3;
}

.main-gallery-item-tall {
    grid-column: span 4;
    grid-row: span 5;
}

.main-gallery-item.is-hidden {
    display: none;
}

.main-gallery-open {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 14px;
    background: var(--dark);
    color: var(--white);
    text-align: left;
}

.main-gallery-open img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.main-gallery-item:hover img {
    transform: scale(1.07);
}

.main-gallery-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.85),
            rgba(7, 11, 6, 0.05) 68%
        );
    transition: background-color 0.3s ease;
}

.main-gallery-category {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 7px 10px;
    border-radius: 50px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.main-gallery-content {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
}

.main-gallery-content small,
.main-gallery-content strong,
.main-gallery-content em {
    display: block;
}

.main-gallery-content small {
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-gallery-content strong {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.2;
}

.main-gallery-item-large .main-gallery-content strong {
    font-size: 38px;
}

.main-gallery-content em {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-style: normal;
    opacity: 0;
    transform: translateY(6px);
    transition:
        max-height 0.3s ease,
        margin-top 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.main-gallery-item:hover .main-gallery-content em {
    max-height: 25px;
    margin-top: 7px;
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   104. NEMA REZULTATA
   ========================================================= */

.no-gallery-results {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 55px 30px;
    border-radius: 15px;
    background: var(--white);
    text-align: center;
}

.no-gallery-results[hidden] {
    display: none;
}

.no-gallery-results > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    font-size: 28px;
}

.no-gallery-results h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 29px;
}

.no-gallery-results p {
    max-width: 440px;
    margin: 0 auto 23px;
    color: var(--text-light);
}


/* =========================================================
   105. VIDEO SEKCIJA
   ========================================================= */

.gallery-video-section {
    background: var(--white);
}

.gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.gallery-video-card {
    overflow: hidden;
    border-radius: 15px;
    background: var(--background);
    box-shadow: 0 15px 45px rgba(31, 39, 27, 0.07);
}

.gallery-video-placeholder {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.gallery-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-video-card:hover img {
    transform: scale(1.06);
}

.gallery-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 6, 0.42);
}

.gallery-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-size: 20px;
    transform: translate(-50%, -50%);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.gallery-video-play:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.08);
}

.gallery-video-content {
    padding: 25px;
}

.gallery-video-content small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.gallery-video-content h3 {
    margin: 7px 0 9px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 25px;
}

.gallery-video-content p {
    color: var(--text-light);
    font-size: 13px;
}

.gallery-video-note {
    max-width: 720px;
    margin: 30px auto 0;
    color: var(--text-light);
    font-size: 12px;
    text-align: center;
}


/* =========================================================
   106. LIGHTBOX
   ========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 4, 0.94);
    backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1200px, 100%);
    height: min(820px, calc(100vh - 60px));
}

.gallery-lightbox-dialog figure {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: var(--dark);
}

.gallery-lightbox-dialog figure > img {
    width: 100%;
    min-height: 0;
    flex: 1;
    object-fit: contain;
}

.gallery-lightbox-dialog figcaption {
    padding: 20px 24px;
    background: var(--dark);
    color: var(--white);
}

.gallery-lightbox-dialog figcaption small,
.gallery-lightbox-dialog figcaption strong,
.gallery-lightbox-dialog figcaption span {
    display: block;
}

.gallery-lightbox-dialog figcaption small {
    color: var(--secondary);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.gallery-lightbox-dialog figcaption strong {
    margin: 4px 0;
    font-family: var(--font-heading);
    font-size: 24px;
}

.gallery-lightbox-dialog figcaption span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.gallery-lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    font-size: 29px;
    line-height: 1;
}

.gallery-lightbox-navigation {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 58px;
    border-radius: 8px;
    background: rgba(15, 20, 13, 0.8);
    color: var(--white);
    font-size: 35px;
    transform: translateY(-50%);
}

.gallery-lightbox-previous {
    left: 15px;
}

.gallery-lightbox-next {
    right: 15px;
}

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   107. ZAVRŠNI CTA
   ========================================================= */

.gallery-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.gallery-final-background,
.gallery-final-overlay {
    position: absolute;
    inset: 0;
}

.gallery-final-background {
    background-image:
        url("../images/gallery/gallery-hero.jpg");
    background-position: center;
    background-size: cover;
}

.gallery-final-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.96),
            rgba(7, 11, 6, 0.72)
        );
}

.gallery-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.gallery-final-inner > div:first-child {
    max-width: 780px;
}

.gallery-final-inner h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.gallery-final-inner h2 span {
    display: block;
    color: var(--secondary);
}

.gallery-final-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-final-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   108. RESPONSIVE – GALERIJA
   ========================================================= */

@media (max-width: 1180px) {

    .gallery-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-category-button:nth-child(3) {
        border-right: 0;
    }

    .gallery-category-button:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(20, 25, 18, 0.08);
    }

    .gallery-video-grid {
        gap: 17px;
    }
}


@media (max-width: 920px) {

    .gallery-hero-counter {
        display: none;
    }

    .gallery-category-section {
        display: none;
    }

    .gallery-filter-mobile {
        display: block;
    }

    .gallery-listing-section {
        padding-top: 90px;
    }

    .main-gallery-item,
    .main-gallery-item-large,
    .main-gallery-item-wide,
    .main-gallery-item-tall {
        grid-column: span 6;
        grid-row: span 4;
    }

    .gallery-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-video-card:last-child {
        grid-column: span 2;
        max-width: 580px;
        width: 100%;
        margin-inline: auto;
    }

    .gallery-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-final-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .gallery-page-hero {
        min-height: 620px;
        padding: 100px 0 85px;
    }

    .gallery-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .gallery-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-page-hero-actions .button {
        width: 100%;
    }

    .main-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .main-gallery-item,
    .main-gallery-item-large,
    .main-gallery-item-wide,
    .main-gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .main-gallery-content strong,
    .main-gallery-item-large .main-gallery-content strong {
        font-size: 26px;
    }

    .gallery-video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-video-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .gallery-lightbox {
        padding: 15px;
    }

    .gallery-lightbox-dialog {
        height: calc(100vh - 30px);
    }

    .gallery-lightbox-close {
        top: 8px;
        right: 8px;
    }

    .gallery-lightbox-navigation {
        width: 42px;
        height: 52px;
    }

    .gallery-lightbox-previous {
        left: 5px;
    }

    .gallery-lightbox-next {
        right: 5px;
    }

    .gallery-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .gallery-final-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .main-gallery-grid {
        grid-auto-rows: 270px;
    }

    .gallery-video-placeholder {
        height: 250px;
    }

    .gallery-lightbox-dialog figcaption strong {
        font-size: 19px;
    }
}

/* =========================================================
   109. KONTAKT – HERO
   ========================================================= */

.contact-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 140px 0 110px;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.contact-page-hero-background,
.contact-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.contact-page-hero-background {
    background-image:
        url("../images/contact/contact-hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.contact-page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.95) 0%,
            rgba(7, 11, 6, 0.76) 50%,
            rgba(7, 11, 6, 0.24) 100%
        ),
        linear-gradient(
            0deg,
            rgba(7, 11, 6, 0.7),
            transparent 55%
        );
}

.contact-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.contact-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.contact-breadcrumbs a:hover {
    color: var(--secondary);
}

.contact-page-hero h1 {
    max-width: 950px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: clamp(55px, 7.2vw, 102px);
    line-height: 0.98;
    letter-spacing: -3px;
}

.contact-page-hero h1 span {
    display: block;
    color: var(--secondary);
}

.contact-page-hero-content > p:not(.section-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.contact-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.contact-hero-status {
    position: absolute;
    right: max(25px, calc((100% - var(--container-width)) / 2));
    bottom: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    width: 245px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
    background: rgba(17, 23, 15, 0.82);
    backdrop-filter: blur(14px);
}

.contact-status-dot {
    position: relative;
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #74c47b;
}

.contact-status-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(116, 196, 123, 0.45);
    border-radius: 50%;
}

.contact-hero-status strong,
.contact-hero-status small {
    display: block;
}

.contact-hero-status strong {
    color: var(--white);
    font-size: 13px;
}

.contact-hero-status small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}


/* =========================================================
   110. KONTAKT INFORMACIJE
   ========================================================= */

.contact-information-section {
    background: var(--dark);
    color: var(--white);
}

.contact-information-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.contact-information-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 125px;
    padding: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-information-card:last-child {
    border-right: 0;
}

.contact-information-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(210, 189, 114, 0.13);
    color: var(--secondary);
}

.contact-information-card small,
.contact-information-card strong,
.contact-information-card p {
    display: block;
}

.contact-information-card small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    text-transform: uppercase;
}

.contact-information-card strong {
    color: var(--white);
    font-size: 13px;
}

.contact-information-card strong a:hover {
    color: var(--secondary);
}

.contact-information-card p {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
}


/* =========================================================
   111. GLAVNI KONTAKT LAYOUT
   ========================================================= */

.contact-main-section {
    background: var(--background);
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    gap: 70px;
}

.contact-form-column h2 {
    max-width: 760px;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.contact-form-column h2 span {
    color: var(--primary);
}

.contact-form-intro {
    max-width: 720px;
    margin-bottom: 32px;
    color: var(--text-light);
}


/* =========================================================
   112. ALERT PORUKE
   ========================================================= */

.contact-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
    padding: 18px 20px;
    border-radius: 11px;
}

.contact-alert > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    font-weight: 900;
}

.contact-alert strong {
    display: block;
    margin-bottom: 3px;
    color: var(--dark);
    font-size: 14px;
}

.contact-alert p {
    font-size: 12px;
}

.contact-alert-success {
    border: 1px solid rgba(66, 132, 75, 0.22);
    background: rgba(80, 153, 89, 0.1);
}

.contact-alert-success > span {
    background: #4f8c56;
    color: var(--white);
}

.contact-alert-success p {
    color: #4c7351;
}

.contact-alert-error {
    border: 1px solid rgba(161, 74, 61, 0.22);
    background: rgba(171, 76, 62, 0.1);
}

.contact-alert-error > span {
    background: #a45345;
    color: var(--white);
}

.contact-alert-error p {
    color: #885046;
}


/* =========================================================
   113. KONTAKT FORMA
   ========================================================= */

.contact-form {
    position: relative;
    padding: 35px;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 55px rgba(31, 39, 27, 0.07);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form-group {
    min-width: 0;
}

.contact-form-group-full {
    margin-top: 22px;
}

.contact-form-group label,
.contact-method-fieldset legend {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.contact-form-group label > span,
.contact-method-fieldset legend > span {
    color: #a45345;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    border: 1px solid rgba(20, 25, 18, 0.13);
    border-radius: 8px;
    outline: none;
    background: var(--background);
    color: var(--text);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 52px;
    padding: 0 15px;
}

.contact-form-group textarea {
    min-height: 170px;
    padding: 15px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(102, 113, 63, 0.12);
}

.contact-form-group .has-error {
    border-color: #a45345;
    background: rgba(164, 83, 69, 0.04);
}

.contact-field-error {
    display: block;
    margin-top: 6px;
    color: #a45345;
    font-size: 10px;
    font-weight: 700;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* =========================================================
   114. NAČIN KONTAKTA
   ========================================================= */

.contact-method-fieldset {
    margin-top: 25px;
    padding: 0;
    border: 0;
}

.contact-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.contact-method-options label {
    position: relative;
    display: block;
    cursor: pointer;
}

.contact-method-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-method-options label > span {
    display: block;
    min-height: 95px;
    padding: 18px;
    border: 1px solid rgba(20, 25, 18, 0.1);
    border-radius: 10px;
    background: var(--background);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-method-options input:checked + span {
    border-color: var(--primary);
    background: rgba(102, 113, 63, 0.08);
    box-shadow: 0 0 0 2px rgba(102, 113, 63, 0.1);
}

.contact-method-options strong,
.contact-method-options small {
    display: block;
}

.contact-method-options strong {
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 13px;
}

.contact-method-options small {
    color: var(--text-light);
    font-size: 10px;
}


/* =========================================================
   115. DNO FORME
   ========================================================= */

.contact-message-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 6px;
}

.contact-message-bottom small {
    color: var(--text-light);
    font-size: 10px;
}

.contact-message-bottom .contact-field-error {
    color: #a45345;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(20, 25, 18, 0.08);
}

.contact-form-footer p {
    max-width: 500px;
    color: var(--text-light);
    font-size: 10px;
}

.contact-submit-button {
    flex-shrink: 0;
}


/* =========================================================
   116. KONTAKT SIDEBAR
   ========================================================= */

.contact-sidebar {
    position: sticky;
    top: 105px;
}

.contact-direct-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 25px 65px rgba(14, 20, 12, 0.17);
}

.contact-direct-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 50px;
    background: rgba(210, 189, 114, 0.14);
    color: var(--secondary);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-direct-card h2 {
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.15;
}

.contact-direct-card > p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct-link:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct-link > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: rgba(210, 189, 114, 0.13);
    color: var(--secondary);
}

.contact-direct-link small,
.contact-direct-link strong {
    display: block;
}

.contact-direct-link small {
    color: rgba(255, 255, 255, 0.43);
    font-size: 9px;
    text-transform: uppercase;
}

.contact-direct-link strong {
    color: var(--white);
    font-size: 12px;
    word-break: break-word;
}

.contact-direct-link:hover strong {
    color: var(--secondary);
}

.contact-office-card {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(31, 39, 27, 0.07);
}

.contact-office-card img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.contact-office-card > div {
    padding: 24px;
}

.contact-office-card small {
    color: var(--primary);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-office-card h3 {
    margin: 7px 0 9px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 23px;
}

.contact-office-card p {
    color: var(--text-light);
    font-size: 12px;
}


/* =========================================================
   117. MAPA
   ========================================================= */

.contact-map-section {
    padding: 115px 0;
    background: var(--white);
}

.contact-map-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.contact-map-placeholder {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #dfe1d9,
            #c9cec0
        );
}

.contact-map-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.32;
    background-image:
        linear-gradient(
            rgba(72, 84, 62, 0.18) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(72, 84, 62, 0.18) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    transform: rotate(-8deg) scale(1.2);
}

.contact-map-marker {
    position: absolute;
    top: 40%;
    left: 52%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 8px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 25px;
    box-shadow: 0 17px 40px rgba(31, 39, 27, 0.25);
}

.contact-map-message {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    max-width: 430px;
    padding: 23px;
    border-radius: 13px;
    background: rgba(19, 25, 17, 0.9);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.contact-map-message small {
    color: var(--secondary);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-map-message strong {
    display: block;
    margin: 5px 0 7px;
    font-family: var(--font-heading);
    font-size: 22px;
}

.contact-map-message p {
    color: rgba(255, 255, 255, 0.61);
    font-size: 11px;
}

.contact-map-content h2 {
    margin-bottom: 22px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 61px);
    line-height: 1.1;
}

.contact-map-content h2 span {
    color: var(--primary);
}

.contact-map-content > p:not(.section-eyebrow) {
    margin-bottom: 25px;
    color: var(--text-light);
}

.contact-map-content ul {
    display: grid;
    gap: 11px;
    margin-bottom: 30px;
}

.contact-map-content li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.contact-map-content li span {
    color: var(--primary);
    font-weight: 900;
}


/* =========================================================
   118. FAQ
   ========================================================= */

.contact-faq-section {
    background: var(--background);
}

.contact-faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 80px;
}

.contact-faq-heading {
    position: sticky;
    top: 110px;
}

.contact-faq-heading h2 {
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: clamp(39px, 5vw, 60px);
    line-height: 1.1;
}

.contact-faq-heading h2 span {
    color: var(--primary);
}

.contact-faq-heading > p:not(.section-eyebrow) {
    color: var(--text-light);
}

.contact-faq-list {
    display: grid;
    gap: 12px;
}

.contact-faq-list details {
    overflow: hidden;
    border: 1px solid rgba(20, 25, 18, 0.08);
    border-radius: 11px;
    background: var(--white);
}

.contact-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
    padding: 20px 23px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.contact-faq-list summary::-webkit-details-marker {
    display: none;
}

.contact-faq-list summary span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(102, 113, 63, 0.1);
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.25s ease;
}

.contact-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.contact-faq-list details p {
    padding: 0 23px 22px;
    color: var(--text-light);
    font-size: 13px;
}


/* =========================================================
   119. ZAVRŠNI CTA
   ========================================================= */

.contact-final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.contact-final-background,
.contact-final-overlay {
    position: absolute;
    inset: 0;
}

.contact-final-background {
    background-image:
        url("../images/contact/contact-hero.jpg");
    background-position: center;
    background-size: cover;
}

.contact-final-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 11, 6, 0.96),
            rgba(7, 11, 6, 0.72)
        );
}

.contact-final-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-final-inner > div:first-child {
    max-width: 800px;
}

.contact-final-inner h2 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
}

.contact-final-inner h2 span {
    display: block;
    color: var(--secondary);
}

.contact-final-inner p:not(.section-eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.contact-final-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   120. RESPONSIVE – KONTAKT
   ========================================================= */

@media (max-width: 1180px) {

    .contact-main-layout {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 45px;
    }

    .contact-map-layout,
    .contact-faq-layout {
        gap: 50px;
    }
}


@media (max-width: 920px) {

    .contact-hero-status {
        display: none;
    }

    .contact-information-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-information-card:nth-child(2) {
        border-right: 0;
    }

    .contact-information-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-office-card {
        margin-top: 0;
    }

    .contact-map-layout,
    .contact-faq-layout {
        grid-template-columns: 1fr;
    }

    .contact-map-placeholder {
        max-width: 760px;
    }

    .contact-faq-heading {
        position: static;
        max-width: 720px;
    }

    .contact-final-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-final-actions {
        flex-direction: row;
    }
}


@media (max-width: 720px) {

    .contact-page-hero {
        min-height: 620px;
        padding: 100px 0 85px;
    }

    .contact-page-hero h1 {
        font-size: clamp(48px, 13vw, 72px);
        letter-spacing: -2px;
    }

    .contact-page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-page-hero-actions .button {
        width: 100%;
    }

    .contact-information-grid {
        grid-template-columns: 1fr;
    }

    .contact-information-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-information-card:last-child {
        border-bottom: 0;
    }

    .contact-form-grid,
    .contact-method-options,
    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 27px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit-button {
        width: 100%;
    }

    .contact-map-placeholder {
        min-height: 500px;
    }

    .contact-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-final-actions .button {
        width: 100%;
    }
}


@media (max-width: 520px) {

    .contact-form {
        padding: 22px;
    }

    .contact-direct-card,
    .contact-office-card > div {
        padding: 25px;
    }

    .contact-map-placeholder {
        min-height: 440px;
    }

    .contact-map-marker {
        top: 30%;
        left: 45%;
    }

    .contact-map-message {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }

    .contact-message-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   STVARNA GOOGLE MAPA
   ========================================================= */

.contact-google-map {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 17px;
    background: #dfe1d9;
    box-shadow: 0 18px 55px rgba(31, 39, 27, 0.1);
}

.contact-google-map iframe {
    display: block;
    width: 100%;
    min-height: 570px;
}

.contact-map-address-card {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    max-width: 420px;
    padding: 23px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(19, 25, 17, 0.92);
    color: var(--white);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.contact-map-address-card small,
.contact-map-address-card strong,
.contact-map-address-card p {
    display: block;
}

.contact-map-address-card small {
    color: var(--secondary);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.contact-map-address-card strong {
    margin: 5px 0 3px;
    font-family: var(--font-heading);
    font-size: 23px;
}

.contact-map-address-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.contact-map-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 900;
}

.contact-map-directions-link span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.contact-map-directions-link:hover span {
    transform: translate(3px, -3px);
}

@media (max-width: 720px) {

    .contact-google-map,
    .contact-google-map iframe {
        min-height: 500px;
    }

    .contact-map-address-card {
        right: 15px;
        bottom: 15px;
        left: 15px;
    }
}

@media (max-width: 520px) {

    .contact-google-map,
    .contact-google-map iframe {
        min-height: 450px;
    }

    .contact-map-address-card {
        padding: 19px;
    }

    .contact-map-address-card strong {
        font-size: 20px;
    }
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-socials a:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}