@font-face {
  font-family: 'Sakana';
  src: url('Sakana.woff2') format('woff2'),
       url('Sakana.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 2. Primjena fonta na logo tekst */
.logo-main {
    font-family: 'Sakana', sans-serif;
    
    /* Opciono: Pošto se custom fontovi ponekad razlikuju po veličini, 
       ovdje možete podesiti veličinu slova ako je potrebno */
    /* font-size: 28px; */ 
}
        /* ============================================
           KOMPLETNI OVERRIDE — BGSLEP.COM DIZAJN
           ============================================ */
        :root {
            --navy: hsl(219, 59%, 18%);       /* tamno plava — hero, luxury, o nama, footer */
            --navy-card: hsl(219, 55%, 19%);   /* malo svetlija plava za kartice unutar plavih sekcija */
            --navy-border: hsl(219, 45%, 26%);
            --white: #ffffff;
            --light-bg: #f4f6f9;              /* svetlo siva — bele sekcije */
            --light-card: #ffffff;
            --light-border: #e5e7eb;
            --accent: hsl(50, 100%, 50%);     /* žuta */
            --accent-dark: hsl(46, 100%, 40%);
            --text-dark: #1a1f36;
            --text-muted: #6b7280;
            --text-muted-light: #9ca3af;
            --radius: 12px;
            --radius-lg: 16px;
        }

        html, body {
    overflow-x: hidden; /* Zabranjuje horizontalni skrol */
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

        i[class*="fa-"] {
            color: var(--accent);
        }
        .vehicle-btn .vb-icon i[class*="fa-"] {
            color: var(--accent);
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; background: var(--white); }
        a { text-decoration: none; color: inherit; }
        .text-accent { color: var(--accent); }
        .hidden { display: none !important; }

        .logo img {
    display: block;
    max-height: 60px; /* Prilagodite visini headera */
    width: auto;
}

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            background: var(--navy);
            border-bottom: 1px solid var(--navy-border);
        }
        .nav-container {
            max-width: 1100px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 20px;
        }
        .logo {
            display: flex; align-items: center; gap: 10px;
            font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: 0.5px;
        }
        .logo-icon {
            width: 42px; height: 42px;
            background: var(--accent);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
        }
        .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
        .logo-main { font-size: 1rem; font-weight: 800; color: #fff; }
        .logo-sub { font-size: 0.7rem; font-weight: 500; color: var(--accent); letter-spacing: 0.5px; }

        .desktop-nav { 
    display: flex; 
    gap: 5px; 
    margin-left: auto; /* Ovo gura navigaciju skroz udesno */
    margin-right: 20px; /* Mali razmak između navigacije i kontakt dugmeta */
}
        .desktop-nav a {
            padding: 8px 14px; font-weight: 600; font-size: 0.88rem;
            color: rgba(255,255,255,0.75); border-radius: 8px; transition: all 0.2s;
        }
        .desktop-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }

        .nav-right { display: flex; align-items: center; gap: 12px; }
        .nav-phone-btn {
            display: flex; align-items: center; gap: 6px;
            background: var(--accent); color: #000; font-weight: 700; font-size: 0.88rem;
            padding: 9px 16px; border-radius: 8px; border: none; cursor: pointer;
            transition: background 0.2s;
        }
        .nav-phone-btn:hover { background: var(--accent-dark); }

        /* Hamburger */
        .hamburger {
            display: none; flex-direction: column; justify-content: center;
            gap: 5px; width: 36px; height: 36px;
            cursor: pointer; background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 6px;
        }
        .hamburger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile nav dropdown */
        .mobile-nav {
            display: none; position: fixed; top: 70px; left: 0; width: 100%; /* Uvek koristi %, a ne vw za širine blokova */
    max-width: 100%;
            background: var(--navy); border-bottom: 1px solid var(--navy-border);
            z-index: 999; flex-direction: column; padding: 16px;
        }
        .mobile-nav.open { display: flex; }
        .mobile-nav a {
            display: block; padding: 13px 16px; border-radius: var(--radius);
            font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 6px;
            border: 1px solid var(--navy-border); text-align: center;
        }
        .mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }
        .mobile-nav .m-call { background: var(--accent); color: #000; border-color: var(--accent); }

        @media (max-width: 991px) {
            .hamburger { display: flex; }
            .desktop-nav { display: none; }
            .nav-phone-btn { display: none; }
        }
        @media (min-width: 992px) {
            .hamburger { display: none; }
            .mobile-nav { display: none !important; }
        }

        /* ===== HERO ===== */
        .hero-section {
            background: var(--navy);
            padding: 100px 20px 70px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex; align-items: center;
        }
        .hero-section::before {
            content: '';
            position: absolute; inset: 0;
            background-image: url('tow-truck.webp');
            background-size: cover; background-position: center;
            opacity: 0.12;
        }
        .hero-inner {
            max-width: 1200px; margin: 0 auto;
            position: relative; z-index: 1;
        }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--accent); color: #000; font-weight: 700;
            font-size: 0.8rem; padding: 6px 16px; border-radius: 50px;
            margin-bottom: 24px; letter-spacing: 0.5px;
        }
        .hero-section h1 {
            font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
            color: #fff; line-height: 1.1; margin-bottom: 0;
        }
        .hero-section h1 span { color: var(--accent); display: block; }
        .hero-phones-old-placeholder {
            display: none;
        }
        .hero-desc { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; }
        .hero-trust {
            display: flex; flex-wrap: wrap; gap: 20px;
            margin-top: 30px;
        }
        .trust-pill {
            display: flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
            padding: 8px 16px; border-radius: 50px;
            font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600;
        }
        .trust-pill span { color: var(--accent); }

        /* ===== KALKULATOR (ispod hero, beli) ===== */
        .calc-section {
            background: var(--light-bg);
            padding: 50px 20px;
        }
        .calc-wrap {
            max-width: 680px; margin: 0 auto;
            background: #fff; border-radius: var(--radius-lg);
            padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            border: 1px solid var(--light-border);
        }
        .calc-title {
            display: flex; align-items: center; gap: 10px;
            font-size: 1.35rem; font-weight: 800; color: var(--text-dark); margin-bottom: 6px;
        }
        .calc-title-icon { font-size: 1.4rem; }
        .calc-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

        .vehicle-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
        .vehicle-btn {
            background: #fff; border: 2px solid var(--light-border);
            border-radius: var(--radius); padding: 18px 12px;
            cursor: pointer; text-align: center; transition: all 0.2s; color: var(--text-dark);
        }
        .vehicle-btn .vb-icon { font-size: 1.6rem; margin-bottom: 6px; color: var(--accent); }
        .vehicle-btn .vb-icon i { font-size: 1.6rem; color: var(--accent) !important; }
        .vehicle-btn .vb-name { font-weight: 700; font-size: 1rem; display: block; }
        .vehicle-btn .vb-price { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
        .vehicle-btn.active { border-color: var(--accent); background: hsl(46,100%,97%); }
        .vehicle-note { font-size: 0.82rem; color: var(--accent-dark); text-align: center; margin-bottom: 20px; font-weight: 500; }

        .calc-field { margin-bottom: 14px; }
        .calc-field label {
            display: flex; align-items: center; gap: 6px;
            font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px;
        }
        .calc-field label span { font-size: 1rem; }
        .custom-input {
            width: 100%; background: var(--light-bg); border: 1.5px solid var(--light-border);
            color: var(--text-dark); padding: 14px 16px; border-radius: var(--radius);
            outline: none; transition: border-color 0.2s; font-size: 0.95rem; font-family: inherit;
        }
        .custom-input::placeholder { color: #aaa; }
        .custom-input:focus { border-color: var(--accent); background: #fff; }

        .dropdown-list {
            position: absolute; width: 100%; background: #fff;
            border: 1.5px solid var(--light-border); border-radius: 0 0 var(--radius) var(--radius);
            max-height: 200px; overflow-y: auto; list-style: none; display: none; z-index: 10; margin-top: -2px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .dropdown-list li {
            padding: 12px 16px; border-bottom: 1px solid var(--light-border);
            cursor: pointer; font-size: 0.88rem; color: var(--text-dark);
        }
        .dropdown-list li:hover { background: var(--light-bg); }
        .input-group { position: relative; }

        .calc-btn {
            width: 100%; background: var(--accent); color: #000; font-weight: 700;
            font-size: 1rem; padding: 16px; border-radius: var(--radius);
            border: none; cursor: pointer; margin-top: 6px; transition: background 0.2s;
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .calc-btn:hover { background: var(--accent-dark); }

        .calc-divider { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin: 18px 0 14px; }
        .calc-contact-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .btn-call-yellow {
            background: var(--accent); color: #000; font-weight: 700; padding: 14px;
            border-radius: var(--radius); border: none; cursor: pointer; font-size: 0.95rem;
            display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.2s;
        }
        .btn-call-yellow:hover { background: var(--accent-dark); }
        .btn-whatsapp-outline {
            background: transparent; color: #16a34a; font-weight: 700; padding: 14px;
            border-radius: var(--radius); border: 2px solid #16a34a; cursor: pointer; font-size: 0.95rem;
            display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s;
        }
        .btn-whatsapp-outline:hover { background: #16a34a; color: #fff; }

        /* Kalkulator rezultat */
        .map-container { width: 100%; height: 200px; border-radius: var(--radius); margin-top: 20px; border: 1px solid var(--light-border); }
        .result-details { background: var(--light-bg); border: 1px solid var(--light-border); padding: 15px; border-radius: var(--radius); margin: 16px 0; }
        .route-point { margin: 8px 0; font-size: 0.9rem; color: var(--text-dark); }
        .point-a { display: inline-block; width: 22px; height: 22px; text-align: center; line-height: 22px; background: rgba(239,68,68,0.15); color: #ef4444; border-radius: 50%; font-weight: bold; margin-right: 8px; font-size: 0.8rem; }
        .point-b { display: inline-block; width: 22px; height: 22px; text-align: center; line-height: 22px; background: rgba(34,197,94,0.15); color: #22c55e; border-radius: 50%; font-weight: bold; margin-right: 8px; font-size: 0.8rem; }
        .price-box { display: flex; justify-content: space-between; align-items: center; background: var(--text-dark); color: #fff; padding: 16px; border-radius: var(--radius); }
        .price-val { font-size: 1.4rem; font-weight: 800; }
        .price-accent { color: var(--accent); }

        /* ===== LUKSUZNA VOZILA (PLAVA) ===== */
        .luxury-section {
            background: var(--navy); padding: 80px 20px;
        }
        .luxury-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .luxury-img img {
            width: 100%; height: 420px; object-fit: cover;
            border-radius: var(--radius-lg);
        }
        .luxury-text h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
        .luxury-text h2 span { color: var(--accent); }
        .luxury-text p { color: rgba(255,255,255,0.7); margin-bottom: 20px; line-height: 1.7; }
        .luxury-checks { list-style: none; margin: 24px 0; }
        .luxury-checks li {
            display: flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.85); font-size: 0.95rem; padding: 6px 0;
        }
        .check-icon { color: var(--accent); font-size: 1rem; font-weight: 700; }
        .luxury-btn {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--accent); color: #000; font-weight: 700;
            padding: 14px 28px; border-radius: var(--radius); transition: background 0.2s;
        }
        .luxury-btn:hover { background: var(--accent-dark); }

        /* ===== CENOVNIK (BELA) ===== */
        .pricing-section {
            background: var(--light-bg); padding: 80px 20px;
        }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
        .section-header p { color: var(--text-muted); font-size: 0.95rem; }

        .pricing-trucks {
            display: flex; justify-content: center; margin: 0 auto 50px;
            max-width: 500px;
        }
        .pricing-trucks img { width: 100%; max-width: 480px; object-fit: contain; }

        .pricing-cards {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 20px; max-width: 820px; margin: 0 auto 30px;
        }
        .pricing-card {
            background: #fff; border: 1.5px solid var(--light-border);
            border-radius: var(--radius-lg); padding: 28px; transition: box-shadow 0.2s;
        }
        .pricing-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
        .pricing-card.featured { border-color: var(--navy); }
        .pc-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
        .pc-icon-wrap {
            width: 44px; height: 44px; background: var(--navy);
            border-radius: 10px; display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; flex-shrink: 0;
        }
        .pc-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
        .pc-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
        .pc-rows { border-top: 1px solid var(--light-border); padding-top: 16px; }
        .pc-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 0; border-bottom: 1px solid var(--light-border);
            font-size: 0.9rem;
        }
        .pc-row:last-child { border-bottom: none; }
        .pc-row .label { color: var(--text-muted); }
        .pc-row .value { font-weight: 700; color: var(--text-dark); }
        .pc-row .value.accent { color: var(--accent-dark); }
        .pc-example {
            background: var(--light-bg); border-radius: 8px; padding: 10px 14px;
            font-size: 0.82rem; color: var(--text-muted); margin-top: 14px;
        }
        .pc-example strong { color: var(--text-dark); }

        .pricing-cta {
            max-width: 820px; margin: 0 auto;
            background: hsl(46, 100%, 97%); border: 1.5px solid hsl(46, 100%, 88%);
            border-radius: var(--radius-lg); padding: 24px 30px;
            display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
        }
        .pricing-cta h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
        .pricing-cta p { font-size: 0.85rem; color: var(--text-muted); }
        .btn-navy {
            background: var(--navy); color: #fff; font-weight: 700; padding: 13px 24px;
            border-radius: var(--radius); border: none; cursor: pointer; white-space: nowrap;
            display: flex; align-items: center; gap: 6px; transition: opacity 0.2s;
        }
        .btn-navy:hover { opacity: 0.9; }
        .pricing-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 16px; max-width: 820px; margin-left: auto; margin-right: auto; }

        /* ===== GALERIJA "Naša vozila" (BELA) — 4 kolone, masonry-like ===== */
        .gallery-section { background: #fff; padding: 80px 20px; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 40px auto 0;
            align-items: start;
        }
        .gallery-item {
            position: relative; border-radius: 16px; overflow: hidden;
            cursor: pointer;
        }
        /* Alternating heights for masonry feel */
        .gallery-item:nth-child(odd) { aspect-ratio: 3/4; margin-top: 28px; }
        .gallery-item:nth-child(even) { aspect-ratio: 3/4; }
        .gallery-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.4s ease; display: block;
        }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-caption {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: #fff; font-size: 0.85rem; font-weight: 600;
            padding: 30px 14px 14px;
        }
        .gallery-note { text-align: center; margin-top: 24px; color: var(--text-muted); font-size: 0.85rem; }

        /* ===== VIDEO SNIMCI SA TERENA (SVETLO SIVA) — 4 kolone portrait ===== */
        .video-section { background: var(--light-bg); padding: 80px 20px; }
        .video-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1200px;
            margin: 40px auto 0;
        }
        .video-item {
            position: relative; border-radius: 16px; overflow: hidden;
            aspect-ratio: 9/16; cursor: pointer; background: #000;
        }
        .video-item video {
            width: 100%; height: 100%; object-fit: cover;
            display: block; border-radius: 16px;
        }
        .video-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(transparent 55%, rgba(0,0,0,0.88));
            border-radius: 16px; pointer-events: none;
        }
        .video-caption {
            position: absolute; bottom: 16px; left: 14px; right: 14px;
            color: #fff; font-size: 0.85rem; font-weight: 700; z-index: 2;
        }
        .video-play-icon {
            position: absolute; top: 14px; right: 14px; z-index: 2;
            width: 32px; height: 32px; background: rgba(255,255,255,0.25);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; color: #fff; backdrop-filter: blur(4px);
        }
        .video-note { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.85rem; }

        /* ===== ZAŠTO MI — 8 kartica u jednom redu ===== */
        .why-section { background: var(--light-bg); padding: 80px 20px; }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            max-width: 1100px;
            margin: 40px auto 0;
        }
        .why-card {
            background: #fff; border: 1.5px solid var(--light-border);
            border-radius: var(--radius-lg); padding: 20px 10px; text-align: center;
            transition: box-shadow 0.2s;
        }
        .why-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
        .why-icon-wrap {
            width: 48px; height: 48px; background: hsl(46, 100%, 94%);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; margin: 0 auto 10px;
        }
        .why-card h3 { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

        /* ===== RECENZIJE (BELA) ===== */
        .reviews-section { background: #fff; padding: 80px 20px; }
        .reviews-rating {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            margin: 12px 0 40px; font-size: 0.9rem; color: var(--text-muted);
        }
        .stars-big { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; }
        .rating-num { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
        .reviews-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 16px; max-width: 900px; margin: 0 auto;
        }
        .review-card {
            background: #fff; border: 1.5px solid var(--light-border);
            border-radius: var(--radius-lg); padding: 24px; position: relative;
        }
        .review-quote {
            position: absolute; top: 16px; right: 20px;
            font-size: 2.5rem; color: hsl(46, 100%, 88%); font-family: Georgia, serif; line-height: 1;
        }
        .review-stars { color: var(--accent); font-size: 0.95rem; margin-bottom: 10px; }
        .review-text { font-size: 0.88rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
        .review-author { display: flex; align-items: center; gap: 10px; }
        .review-avatar {
            width: 38px; height: 38px; border-radius: 50%; overflow: hidden;
            background: var(--light-bg); flex-shrink: 0;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.85rem; color: var(--navy);
        }
        .review-name { font-weight: 600; font-size: 0.88rem; color: var(--text-dark); }
        .review-meta { font-size: 0.78rem; color: var(--text-muted); }

        /* ===== O NAMA (PLAVA) ===== */
        .about-section { background: var(--navy); padding: 80px 20px; }
        .about-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
        }
        .about-text h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
        .about-text p { color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.75; font-size: 0.95rem; }
        .about-text p strong { color: var(--accent); }
        .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .about-stat {
            background: var(--navy-card); border: 1px solid var(--navy-border);
            border-radius: var(--radius); padding: 24px; text-align: center;
        }
        .about-stat .big { font-size: 2.2rem; font-weight: 900; color: var(--accent); line-height: 1; }
        .about-stat .lbl { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 6px; }

        /* ===== FAQ — lepe strelice ===== */
        .faq-section { background: var(--light-bg); padding: 80px 20px; }
        .faq-container { max-width: 720px; margin: 40px auto 0; }
        .faq-item {
            background: #fff; border: 1.5px solid var(--light-border);
            border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
        }
        .faq-toggle {
            width: 100%; background: transparent; border: none; color: var(--text-dark);
            padding: 18px 20px; text-align: left; font-size: 0.95rem; font-weight: 600;
            cursor: pointer; display: flex; justify-content: space-between; align-items: center;
            font-family: inherit; gap: 12px;
        }
        .faq-toggle:hover { background: var(--light-bg); }
        .faq-chevron {
            width: 22px; height: 22px; flex-shrink: 0;
            border-radius: 50%; background: var(--light-bg); border: 1.5px solid var(--light-border);
            display: flex; align-items: center; justify-content: center;
            transition: transform 0.3s, background 0.2s;
        }
        .faq-chevron svg { width: 12px; height: 12px; stroke: var(--text-muted); stroke-width: 2.5; fill: none; transition: stroke 0.2s; }
        .faq-toggle.open .faq-chevron { transform: rotate(180deg); background: var(--accent); border-color: var(--accent); }
        .faq-toggle.open .faq-chevron svg { stroke: #000; }
        .faq-content { display: none; padding: 0 20px 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--light-border); padding-top: 14px; margin: 0 20px; }

        /* ===== FAB dugme — uvek vidljivo ===== */
        .fab-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent); /* Tvoja prepoznatljiva žuta */
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    
    /* Ovaj deo ga sakriva na početku i pravi glatku animaciju */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Forsiranje prikaza ikonice telefona u plivajućem dugmetu */
.fab-phone i {
    color: var(--navy) !important; /* Tamno plava boja da bi imala kontrast na žutom */
    font-size: 28px !important;    /* Veličina same ikonice */
    display: block !important;
}

/* Da promeni boju kad se pređe mišem preko dugmeta (na kompu) */
.fab-phone:hover i {
    color: var(--accent) !important;
}s

/* Ovu klasu će dodavati naš JavaScript kada skroluješ */
.fab-phone.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-phone:hover {
    transform: scale(1.1) translateY(0);
    background-color: var(--white);
    color: var(--accent);
}

        /* Mobile call bar — ispod navbara na mobilnom */
        .mobile-call-bar {
            display: none;
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
            background: var(--accent);
            padding: 14px 20px;
            text-align: center;
        }
        .mobile-call-bar a {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            color: #000; font-weight: 800; font-size: 1.15rem;
            text-decoration: none;
        }
        @media (max-width: 991px) {
            .mobile-call-bar { display: block; }
            body { padding-bottom: 60px; } /* sprečava da bar prekrije sadržaj */
            .fab-phone { bottom: 80px; } /* pomeri FAB iznad call bara */
        }
        .cta-section {
            background: var(--accent); padding: 70px 20px; text-align: center;
        }
        .cta-section h2 { font-size: 2rem; font-weight: 900; color: var(--text-dark); margin-bottom: 12px; }
        .cta-section p { color: rgba(0,0,0,0.65); margin-bottom: 30px; font-size: 1rem; max-width: 480px; margin-left: auto; margin-right: auto; }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--navy); color: #fff; font-weight: 700; font-size: 1.05rem;
            padding: 16px 36px; border-radius: var(--radius); transition: opacity 0.2s;
        }
        .cta-btn:hover { opacity: 0.9; }

        /* ===== FOOTER (PLAVA) ===== */
        footer {
            background: var(--navy); padding: 60px 20px 30px;
            border-top: 1px solid var(--navy-border);
        }
        .footer-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px;
        }
        .footer-brand .logo { margin-bottom: 16px; }
        .footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
        .footer-socials { display: flex; gap: 10px; }
        .social-btn {
            width: 36px; height: 36px; background: var(--navy-card); border: 1px solid var(--navy-border);
            border-radius: 8px; display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: all 0.2s;
        }
        .social-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
        .footer-col h4 { color: var(--accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
        .footer-col a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 12px; transition: color 0.2s; }
        .footer-col a:hover { color: #fff; }
        .footer-bottom {
            border-top: 1px solid var(--navy-border); padding-top: 24px;
            max-width: 1100px; margin: 0 auto;
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.2s; }
        .footer-bottom-links a:hover { color: #fff; }

        /* FAB telefon */
        .fab-phone {
            position: fixed; bottom: 24px; right: 24px; z-index: 999;
            width: 52px; height: 52px; background: var(--accent);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem; box-shadow: 0 4px 16px rgba(234,179,8,0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .fab-phone:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(234,179,8,0.5); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .luxury-inner, .about-inner { grid-template-columns: 1fr; gap: 30px; }
            .luxury-img { order: -1; }
            .luxury-img img { height: 260px; }
            .pricing-cards { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item:nth-child(odd) { margin-top: 0; }
            .video-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(4, 1fr); }
            .reviews-grid { grid-template-columns: 1fr; }
            .about-stats { grid-template-columns: 1fr 1fr; }
            .footer-inner { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .calc-contact-btns { grid-template-columns: 1fr; }
            .pricing-cta { flex-direction: column; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero-phones { flex-direction: column; }
            .hero-phones a { width: 100%; justify-content: center; }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
        }

        /* Section layout helpers */
        .sec-inner { max-width: 1100px; margin: 0 auto; }
        /* Glavni kontejner deli ekran na 2 kolone na desktopu */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

/* Sređivanje leve strane (tekst i brojevi) */
.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    justify-content: flex-start;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 22px;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.phone-link:hover { background: rgba(255,255,255,0.18); }
.phone-link i { color: var(--accent) !important; }

.hero-text-content .hero-badge { align-self: flex-start; }
.hero-text-content .hero-trust { justify-content: flex-start; }

/* Hero kalkulator na desnoj strani */
.hero-calculator-content {
    position: relative;
}
.hero-calculator-content .calc-wrap {
    max-width: 100%;
    margin: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* Na mobilnim uređajima sve ide u jednu kolonu */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }
    
    .hero-phones {
        align-items: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-text-content .hero-badge { align-self: center; }
    .hero-text-content .hero-trust { justify-content: center; }
}


@media (max-width: 768px) {
    /* Zameni '.klasa-dugmeta' sa stvarnom klasom tvog dugmeta, npr. .floating-phone */
    .footer-col a[href^="tel:"] { 
        /* Ako želiš sakriti sve tel linkove u footeru na mobilnom */
        /* display: none; */
    }
    
    /* Ako imaš posebno fiksno dugme u uglu ekrana */
    .fixed-phone-button { 
        display: none !important;
    }
}

/* ===== LOKACIJA I MAPA ===== */
.location-section {
    background: var(--white);
    padding: 80px 20px;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--light-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.location-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.location-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--light-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.info-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.info-text a {
    color: var(--navy);
    font-weight: 600;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--accent-dark);
}

.location-map {
    min-height: 400px;
    width: 100%;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Prilagođavanje za mobilne telefone */
@media (max-width: 900px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 350px;
        order: -1; /* Ovo prebacuje mapu iznad informacija na telefonu (ako želiš obrnut redosled, izbriši ovu liniju) */
    }
    
    .location-info {
        padding: 30px 20px;
    }
}

/* =========================
   MOBILE FULL-WIDTH CALCULATOR
   ========================= */
@media (max-width: 768px) {

  .hero-section {
    padding: 80px 12px 30px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  .hero-calculator-content {
    width: 100%;
  }

  .hero-calculator-content .calc-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 18px;
    padding: 22px 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  }

  /* naslov */
  .calc-title {
    font-size: 1.15rem;
  }

  .calc-sub {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  /* tip vozila */
  .vehicle-toggle {
    gap: 10px;
  }

  .vehicle-btn {
    padding: 14px 8px;
    border-radius: 14px;
  }

  .vehicle-btn .vb-icon,
  .vehicle-btn .vb-icon i {
    font-size: 1.35rem;
  }

  .vehicle-btn .vb-name {
    font-size: 0.95rem;
  }

  .vehicle-btn .vb-price {
    font-size: 0.78rem;
  }

  .vehicle-note {
    font-size: 0.75rem;
    margin: 10px 0 18px;
  }

  /* inputi */
  .calc-field label {
    font-size: 0.9rem;
  }

  .custom-input {
    font-size: 0.92rem;
    padding: 14px;
    border-radius: 14px;
  }

  .dropdown-list li {
    font-size: 0.9rem;
    padding: 12px;
  }

  /* dugme */
  .calc-btn {
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .calc-divider {
    font-size: 0.82rem;
    margin: 18px 0 12px;
  }

  .btn-call-yellow,
  .btn-whatsapp-outline {
    padding: 14px;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .map-container {
    height: 190px;
  }

  .price-val {
    font-size: 1.25rem;
  }
}