/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    /* Hauptfarben: dunkles Blau, dunkles Grün, Beige */
    --primary-color: #0b3b8c;      /* dunkles Blau */
    --primary-dark: #062657;       /* noch dunkleres Blau */
    --secondary-color: #0b6b3b;    /* dunkles Grün */
    --accent-blue: #0b4f9c;       /* Akzent-Blau, etwas heller als primary */
    --text-dark: #152033;
    --text-light: #5b6475;
    --bg-light: #f4e5cf;          /* beige Hintergrund */
    --bg-white: #fdf7ee;          /* leichtes Beige statt reinweiß */
    --border-color: #e0d4c2;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.logo a:hover {
    opacity: 0.92;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: transparent;
    color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content {
    background: linear-gradient(135deg,
        rgba(11, 59, 140, 0.85),
        rgba(11, 107, 59, 0.85)
    );
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-brand-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
}

.hero-buttons-below-logo {
    justify-content: center;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: visible;
}

.hero-logo-container {
    position: relative;
    z-index: 10;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: auto;
    max-width: min(440px, 72vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    background: rgba(255, 255, 255, 0.98);
    padding: 0.35rem 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    object-fit: contain;
}

.hero-logo:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34),
                0 0 0 3px rgba(255, 255, 255, 0.45);
}

.hero-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 400px;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Utility */
.is-hidden {
    display: none !important;
}

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Mobile-first: eine Spalte, auf großen Screens 5 Spalten */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.advantage-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
    .advantage-card {
        max-width: 260px;
        min-height: 180px;
        margin-left: auto;
        margin-right: auto;
    }
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-light);
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.service-card-gold {
    border-width: 2px;
    border-color: #fbbf24;
    background: linear-gradient(135deg, #facc15, #fbbf24, #f59e0b);
    box-shadow: 0 18px 30px rgba(251, 191, 36, 0.6);
    position: relative;
    color: #1f2937;
}

.service-card-gold::before {
    content: "TOP PONUDA";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* O nama & Naše usluge (Početna): kartice i tekst mittig */
#o-nama .services-grid,
.services-preview .services-grid {
    justify-items: center;
}

#o-nama .service-card,
.services-preview .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

#o-nama .service-card .service-icon,
.services-preview .service-card .service-icon {
    margin-bottom: 1rem;
}

#o-nama .service-card h3,
.services-preview .service-card h3 {
    width: 100%;
}

#o-nama .service-card p,
.services-preview .service-card p {
    margin-bottom: 0;
    width: 100%;
}

@media (max-width: 768px) {
    #o-nama .service-card,
    .services-preview .service-card {
        max-width: none;
    }
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-dark);
}

.text-center {
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
    background: var(--bg-light);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    text-align: center;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credit a {
    color: rgba(147, 197, 253, 0.95);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-credit a:hover {
    color: #fff;
}

/* Schnell-Kontaktleiste: rechts mittig (WhatsApp, Viber, E-Mail, Telefon) */
.contact-quick-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem 0 0 1rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    transition: transform 0.2s, background 0.2s;
}

.quick-contact-link:hover {
    transform: scale(1.1);
    color: white;
}

.quick-contact-link:nth-child(1):hover { background: #25d366; }
.quick-contact-link:nth-child(2):hover { background: #7360f2; }
.quick-contact-link:nth-child(3):hover { background: #ea4335; }
.quick-contact-link:nth-child(4):hover { background: #0d9488; }

/* Icons (SVG als Datei) */
.quick-contact-link img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Feintuning Viber-Icon (Datei-SVG) */
.quick-contact-viber img {
    width: 27px;
    height: 27px;
    transform: none;
    transform-origin: center;
}

/* Viber-Icon etwas größer für bessere Erkennbarkeit */
.quick-contact-viber svg {
    width: 26px;
    height: 26px;
    transform: scale(0.94);
    transform-origin: center;
}

.quick-contact-label {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    padding: 0.35rem 0.6rem;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0.35rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.quick-contact-link:hover .quick-contact-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-quick-bar {
        padding: 0.5rem 0.35rem;
        gap: 0.35rem;
    }
    .quick-contact-link {
        width: 44px;
        height: 44px;
    }
    .quick-contact-link svg {
        width: 22px;
        height: 22px;
    }
    .quick-contact-viber svg {
        width: 24px;
        height: 24px;
        transform: scale(0.94);
    }

    .quick-contact-link img {
        width: 22px;
        height: 22px;
    }

    .quick-contact-viber img {
        transform: scale(0.98);
    }
}


/* Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-content {
    padding: 3rem 0;
}

/* Spezieller Hintergrund für O-nama Abschnitt */
#o-nama {
    background: radial-gradient(circle at top left, rgba(11, 59, 140, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(11, 107, 59, 0.08), transparent 55%),
                var(--bg-white);
}

#o-nama .container {
    position: relative;
}

#o-nama .section-title {
    position: relative;
}

#o-nama .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 0.75rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.about-grid-bottom {
    margin-top: 1rem;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: stretch;
    text-align: center;
}

.about-badge {
    background: white;
    border-radius: 0.9rem;
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: min(10rem, 100%);
}

.about-badge-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    width: 100%;
}

.about-badge-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    width: 100%;
}

.about-list {
    margin-left: 1.5rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Gallery – horizontal slider */
.gallery-slider-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}

.gallery-slider-viewport {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    /* proximity: manje „borbe“ sa programskim scrollTo pri kliku na strelice */
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.35rem 0;
    /* Za širinu slajda na uskim ekranima (jedna slika = širina viewporta) */
    container-type: inline-size;
    container-name: gallery-viewport;
}

.gallery-slider-track {
    display: flex;
    gap: 1rem;
}

.gallery-slider-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: var(--shadow);
}

.gallery-slider-nav:hover {
    background: var(--primary-dark);
}

.gallery-slider-nav:active {
    transform: scale(0.96);
}

.gallery-slider-hint.gallery-hint-mobile {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--bg-light);
    flex: 0 0 auto;
    width: min(85vw, 560px);
    scroll-snap-align: center;
    scroll-snap-stop: normal;
}

/* Mobilno / usko: tačno jedna slika po „ekranu“ slidera (širina = unutrašnjost viewporta) */
@container gallery-viewport (max-width: 640px) {
    .gallery-slider-track {
        gap: 0.65rem;
    }

    .gallery-item {
        flex: 0 0 100cqi;
        width: 100cqi;
        max-width: none;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* Desktop: dvije slike potpuno unutra trake (razmak tačno jedan gap između njih) */
@container gallery-viewport (min-width: 641px) {
    .gallery-item {
        flex: 0 0 calc((100cqi - 1rem) / 2);
        width: calc((100cqi - 1rem) / 2);
        max-width: none;
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
}

@supports not (container-type: inline-size) {
    @media (max-width: 640px) {
        .gallery-slider-viewport .gallery-slider-track {
            gap: 0.65rem;
        }

        .gallery-slider-viewport .gallery-item {
            flex: 0 0 calc(100vw - 6rem);
            width: calc(100vw - 6rem);
            max-width: none;
            scroll-snap-stop: always;
        }
    }

    @media (min-width: 641px) {
        .gallery-slider-viewport .gallery-item {
            flex: 0 0 calc((100vw - 9rem) / 2);
            width: calc((100vw - 9rem) / 2);
            max-width: none;
            scroll-snap-align: start;
        }
    }
}

/* Galerija na širokim ekranima: malo širi kontejner da dvije slike imaju više mjesta */
@media (min-width: 1024px) {
    #galerija .container,
    section.page-content:has([data-gallery-slider]) > .container {
        max-width: 1360px;
    }
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.gallery-hint-mobile {
    display: none;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.gallery-hint-arrow {
    display: inline-block;
    margin-right: 0.5rem;
    animation: galleryArrowBlink 1.2s infinite;
}

@keyframes galleryArrowBlink {
    0%, 100% { opacity: 0.2; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(4px); }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonials-hint-mobile {
    display: none;
    margin-top: 1rem;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonials-hint-arrow {
    display: inline-block;
    margin-right: 0.5rem;
    animation: galleryArrowBlink 1.2s infinite;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    background: rgba(15, 23, 42, 0.96);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.cookie-banner-main {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    flex: 1 1 260px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: rgba(147, 197, 253, 0.95);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cookie-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
}

.cookie-details-toggle {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
}

.cookie-details-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cookie-details {
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-details-title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.cookie-details-list {
    margin: 0 0 0.75rem;
    padding-left: 1.25rem;
}

.cookie-details-list li {
    margin-bottom: 0.4rem;
}

.cookie-details-list code {
    font-size: 0.78em;
    padding: 0.1em 0.35em;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.35);
}

.cookie-details-list a {
    color: rgba(147, 197, 253, 0.95);
}

.cookie-details-note {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .cookie-banner-main {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.price-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-period {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price-features {
    list-style: none;
    margin: 0 0 2rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.price-features li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(244, 229, 207, 0.92); /* beige transparent */
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    /* Auf beige Hintergrund muss die Schrift dunkel sein */
    .nav-menu a {
        color: var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    /* Mobile: Inhalte zentrieren */
    .hero .container,
    .advantages .container,
    .services-preview .container,
    .page-content .container,
    .cta-section .container,
    .footer .container {
        text-align: center;
    }

    .hero-content,
    .booking-form-container,
    .calendar-container {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }

    .hero-logo {
        max-width: min(380px, 88vw);
    }

    .logo a {
        font-size: 1.65rem;
    }

    .gallery-slider-nav {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }

    /* Galerija: širina slajda na mobilnom → @container gallery-viewport ili fallback iznad */

    /* Referenzen als horizontale Slideshow auf Mobile */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .testimonial-card {
        flex: 0 0 90%;
        min-width: 90%;
        scroll-snap-align: start;
    }

    .testimonials-hint-mobile {
        display: block;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* Naše usluge: 3 Karten oben, 2 unten */
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    /* Extra Abstand für Hero-Text nur auf Desktop */
    .hero-content {
        margin-top: 50px;
    }
}


/* Modal: uspješno slanje kontakt obrasca */
.contact-success-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.contact-success-modal.is-hidden {
    display: none !important;
}

.contact-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
}

.contact-success-modal__box {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem 1.75rem;
    text-align: center;
}

.contact-success-modal__box h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.contact-success-modal__text {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
}
