.elementor-1630 .elementor-element.elementor-element-fb1d0b7{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1630 .elementor-element.elementor-element-880c62b{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-880c62b *//* =========================================
           OSNOVNE POSTAVKE (Zajedničko za sve)
           ========================================= */
        :root {
            --primary: #059669;
            --primary-dark: #047857;
            --black: #050505;
            --text: #334155;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --font-sans: 'Outfit', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --font-heading: 'Montserrat', sans-serif;
            --transition: all 0.3s ease;

            /* KONTROLA VELIČINE LOGOTIPA I HEADERA */
            --logo-height-desktop: 115px;
            --logo-height-mobile: 115px;
            --header-height-desktop: 130px;
            --header-height-mobile: 80px;

            /* KONTROLA VELIČINE LOGOTIPA U FOOTERU */
            --footer-logo-height-desktop: 115px;
            --footer-logo-height-mobile: 60px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-sans); color: var(--text); background: var(--bg-light); overflow-x: hidden; line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* =========================================
           SADRŽAJ STRANICE (Main Content Area)
           ========================================= */
        .page-content {
            flex-grow: 1;
            padding-top: 180px;
            padding-bottom: 80px;
        }

        @media (max-width: 768px) {
            .page-content {
                padding-top: 140px;
                padding-bottom: 50px;
            }
        }

        /* =========================================
           HEADER & NAVIGACIJA
           ========================================= */
        header.main-header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        header.main-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .topbar {
            border-bottom: 1px solid rgba(0,0,0,0.05);
            background: #f8fafc;
            padding: 10px 0;
            display: block;
        }
        .topbar .container {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--black);
        }
        .topbar-right { display: flex; gap: 24px; }
        .topbar i { color: var(--primary); margin-right: 5px; }

        .nav-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: var(--header-height-desktop); 
            position: relative;
            transition: var(--transition);
        }
        
        .logo {
            position: absolute;
            left: 24px;
            z-index: 1010;
        }

        .logo img {
            height: var(--logo-height-desktop); 
            max-height: var(--logo-height-desktop);
            width: auto;
            transition: all 0.3s ease;
            display: block;
        }
        .logo:hover img { transform: scale(1.05); }

        .desktop-menu { display: flex; gap: 32px; align-items: center; }
        .desktop-menu a {
            font-size: 15px; font-weight: 600; text-transform: uppercase;
            letter-spacing: 1.5px; color: var(--black); position: relative;
            padding: 5px 0; transition: var(--transition); cursor: pointer;
        }
        .desktop-menu a:hover { color: var(--primary); }
        .desktop-menu a::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 0; height: 2px; background: var(--primary); transition: var(--transition);
        }
        .desktop-menu a:hover::after { width: 100%; }

        .mobile-toggle {
            display: none; background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.08);
            width: 45px; height: 45px; border-radius: 50%; font-size: 20px; 
            cursor: pointer; color: var(--black); position: absolute;
            right: 24px; top: 50%; transform: translateY(-50%); z-index: 1010; transition: var(--transition);
        }
        .mobile-toggle:hover { background: rgba(0,0,0,0.08); color: var(--black); transform: translateY(-50%) scale(1.05); }

        .mobile-menu {
            position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
            background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.15);
            padding: 100px 30px 40px; display: flex; flex-direction: column; gap: 20px;
            z-index: 2010; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .mobile-menu.active { right: 0; }

        .mobile-close {
            position: absolute; top: 30px; right: 24px; background: rgba(0,0,0,0.03); 
            border: 1px solid rgba(0,0,0,0.08); width: 45px; height: 45px; border-radius: 50%;
            font-size: 20px; cursor: pointer; color: var(--black); display: flex;
            align-items: center; justify-content: center; transition: var(--transition);
        }
        .mobile-close:hover { background: rgba(0,0,0,0.08); transform: scale(1.05); }

        .mobile-menu a {
            font-size: 18px; font-weight: 600; color: var(--black); text-transform: uppercase;
            letter-spacing: 1px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition);
        }
        .mobile-menu a:hover { color: var(--primary); padding-left: 10px; }

        .mobile-overlay {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 2000; 
            opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
        }
        .mobile-overlay.active { opacity: 1; pointer-events: auto; }

        /* =========================================
           STILOVI ZA POLICY STRANICE (Zajedničko)
           ========================================= */
        .privacy-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--bg-light);
        }

        .hero-pp {
            text-align: center;
            margin-bottom: 50px;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(5, 150, 105, 0.1);
            color: var(--primary);
            padding: 6px 18px;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 13px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .hero-pp h1 {
            font-family: var(--font-serif);
            font-size: 48px;
            color: var(--black);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .hero-sub {
            color: #64748b;
            font-size: 18px;
            font-weight: 500;
        }
        .hero-line {
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 30px auto 0;
            border-radius: 2px;
        }

        .lang-toggle {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
        }
        .lang-btn {
            background: var(--white);
            border: 2px solid rgba(5, 150, 105, 0.2);
            color: var(--text);
            padding: 12px 30px;
            border-radius: 30px;
            font-family: var(--font-sans);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }
        .lang-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .lang-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
        }

        .lang-section {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }
        .lang-section.visible {
            display: block;
        }

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

        .date-bar {
            background: var(--white);
            color: #64748b;
            padding: 15px 25px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 40px;
            text-align: center;
            border-left: 4px solid var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .policy-section {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.04);
            border-radius: 20px;
            padding: 40px 50px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        .policy-section:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            transform: translateY(-2px);
        }
        .policy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }
        .policy-section:hover::before {
            opacity: 1;
        }

        .section-num {
            font-family: var(--font-heading);
            font-size: 70px;
            font-weight: 900;
            color: rgba(5, 150, 105, 0.05);
            position: absolute;
            top: 20px;
            right: 30px;
            line-height: 1;
            pointer-events: none;
            transition: var(--transition);
        }
        .policy-section:hover .section-num {
            color: rgba(5, 150, 105, 0.1);
        }

        .policy-section h2 {
            font-family: var(--font-serif);
            font-size: 28px;
            color: var(--black);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .policy-section p {
            color: var(--text);
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }
        .policy-section ul {
            margin-bottom: 15px;
            padding-left: 0;
        }
        .policy-section li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            color: var(--text);
            font-size: 16px;
        }
        .policy-section li::before {
            content: '\f00c'; /* FontAwesome check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 14px;
        }
        .hl {
            color: var(--primary-dark);
            font-weight: 700;
            background: rgba(5, 150, 105, 0.05);
            padding: 2px 8px;
            border-radius: 4px;
        }

        /* =========================================
           FOOTER
           ========================================= */
        footer {
            background: var(--black); color: var(--white); padding: 80px 0 30px; 
            border-top: 5px solid var(--primary);
        }
        .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
        .footer-col-1 { display: flex; flex-direction: column; align-items: flex-start; padding-left: 0; }
        .footer-logo { display: block; margin-bottom: 20px; }
        .footer-logo img { 
            height: var(--footer-logo-height-desktop); max-height: var(--footer-logo-height-desktop); width: auto;
            display: block; filter: brightness(0) invert(1); transition: all 0.3s ease;
        }
        .footer-text { color: #94a3b8; font-size: 15px; margin-bottom: 20px; line-height: 1.7; }
        .social-icons { display: flex; gap: 15px; }
        .social-icons a {
            width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--white);
        }
        .social-icons a:hover { background: var(--primary); transform: translateY(-3px); color: var(--white); }
        .footer-col h4 { font-size: 20px; margin-bottom: 25px; color: var(--white); font-weight: 800; }
        .footer-links li { margin-bottom: 15px; }
        .footer-links a { color: #94a3b8; font-weight: 700; transition: var(--transition); font-size: 15px; display: flex; align-items: center; gap: 10px;}
        .footer-links a i { color: var(--primary); font-size: 12px; }
        .footer-links a:hover { color: var(--white); }
        .contact-list li { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
        .contact-icon {
            width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
            color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(5, 150, 105, 0.4);
        }
        .contact-list span, .contact-list a { color: #94a3b8; font-weight: 500; font-size: 15px; }
        .contact-list a:hover { color: var(--white); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; 
            justify-content: space-between; align-items: center; color: #94a3b8; font-size: 14px; font-weight: 700;
        }
        .dev-text { font-size: 11px; color: #94a3b8; font-weight: 700; text-transform: lowercase; letter-spacing: 0.5px; margin: 0; }
        .dev-link { color: var(--white); font-weight: 800; transition: var(--transition); text-transform: lowercase; }
        .dev-link:hover { color: var(--primary); background: none; }

        /* =========================================
           RESPONSIVE DIZAJN (MOBITELI)
           ========================================= */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .topbar { display: block; padding: 8px 0; }
            .topbar .container { flex-direction: column; align-items: center; gap: 5px; }
            .topbar-right { justify-content: center; gap: 15px; flex-wrap: wrap; }
            .desktop-menu { display: none; }
            .mobile-toggle { display: flex; align-items: center; justify-content: center; }

            .nav-wrapper { height: var(--header-height-mobile); }
            .logo { left: 15px; }
            .logo img { height: var(--logo-height-mobile); max-height: var(--logo-height-mobile); }
            .mobile-toggle { right: 15px; width: 40px; height: 40px; font-size: 18px; }

            /* Privacy Policy Responsive */
            .hero-pp h1 { font-size: 36px; }
            .policy-section { padding: 30px 25px; border-radius: 16px; }
            .section-num { font-size: 50px; top: 15px; right: 20px; }

            .footer-logo img { height: var(--footer-logo-height-mobile); max-height: var(--footer-logo-height-mobile); }
            footer { text-align: left; padding-top: 60px; }
            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-col, .footer-col-1 { align-items: flex-start; text-align: left; }
            .footer-logo { margin: 0 0 20px 0; }
            .social-icons { justify-content: flex-start; margin-bottom: 20px; }
            .footer-links a { justify-content: flex-start; }
            .contact-list li { flex-direction: row; align-items: center; gap: 15px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; gap: 15px; text-align: left; }
        }/* End custom CSS */