        /* --- RESET & VARIABLES --- */
        :root {
            --primary-yellow: #f1b300;
            --primary-yellow-hover: #d9a000;
            --dark-bg: #0f1214;
            --dark-card: #181c1f;
            --text-dark: #121416;
            --text-muted: #6c757d;
            --bg-light-gray: #f8f9fa;
            --border-light: #e9ecef;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #ffffff;
            color: var(--text-dark);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* --- HEADER --- */
        header {
            position: sticky;
            top: 0;
            background: #ffffff;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            padding: 20px 0;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--text-dark);
            z-index: 1001;
        }

		.logo-badge {
			width: 58px;
			height: 58px;
			display: flex;
			align-items: center;
			justify-content: center;
			/* flex-shrink: 0; */
		}

        .logo-badge svg {
            width: 34px;
            height: 34px;
            fill: var(--primary-yellow);
        }

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

        .logo-title {
            font-size: 19px;
            font-weight: 900;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .logo-subtitle {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: #555;
            margin-top: 3px;
        }

        /* NAV ZA DESKTOP */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
            align-items: center;
        }

        .main-nav a {
            text-decoration: none;
            color: #212529;
            font-weight: 700;
            font-size: 11px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

        .main-nav a:hover, .main-nav a.active {
            color: var(--primary-yellow-hover);
        }

        .btn-header-call {
            background-color: var(--primary-yellow);
            color: #000000;
            padding: 10px 18px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 11px;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .btn-header-call:hover {
            background-color: var(--primary-yellow-hover);
        }

        .btn-header-call svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* HAMBURGER DUGME */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            flex-direction: column;
            gap: 5px;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu-btn span {
            display: block;
            width: 26px;
            height: 3px;
            background-color: #111;
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        .mobile-menu-btn.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
            background-color: var(--primary-yellow);
        }

        .mobile-menu-btn.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
            background-color: var(--primary-yellow);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 480px;
        }

        .hero-content {
            padding-bottom: 60px;
            z-index: 2;
        }

        .hero-title {
            font-size: 54px;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -1px;
            color: #0d0e10;
            margin-bottom: 24px;
        }

        .hero-title span {
            color: var(--primary-yellow);
        }

        .hero-subtitle {
            font-size: 16px;
            color: #495057;
            font-weight: 500;
            margin-bottom: 36px;
            max-width: 440px;
            line-height: 1.5;
        }

        .btn-hero {
            background-color: var(--primary-yellow);
            color: #000;
            padding: 16px 28px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 0.8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            text-transform: uppercase;
            box-shadow: 0 4px 14px rgba(241, 179, 0, 0.35);
            transition: transform 0.2s, background 0.2s;
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            background-color: var(--primary-yellow-hover);
        }

        .btn-hero svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .hero-image-wrapper {
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .hero-img {
            width: 100%;
            max-width: 580px;
            height: auto;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        /* --- CONTENT LIST SECTION --- */
        .content-section {
            padding: 20px 0;
            background-color: #ffffff;
        }

        .content-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

		.item-card {
			display: grid;
			grid-template-columns: 80px 1fr 480px;
			align-items: center;
			padding: 15px;
			transition: box-shadow 0.3s, border-color 0.3s;
			border-bottom: 1px solid #e9ecef;
		}

        .card-icon-box {
            width: 64px;
            height: 64px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e9ecef;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }

        .card-icon-box svg {
            width: 32px;
            height: 32px;
            fill: var(--primary-yellow);
            stroke: #111;
            stroke-width: 1;
        }

        .card-body {
            padding: 0 32px;
        }

        .card-number {
            font-size: 14px;
            font-weight: 800;
            color: var(--primary-yellow);
            display: block;
            margin-bottom: 4px;
        }

        .card-title {
            font-size: 22px;
            font-weight: 800;
            color: #111315;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .card-text {
            font-size: 13px;
            color: #6c757d;
            margin-bottom: 16px;
            max-width: 460px;
            line-height: 1.5;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 800;
            color: #111;
            text-decoration: none;
            transition: gap 0.2s, color 0.2s;
        }

        .card-link:hover {
            color: var(--primary-yellow-hover);
            gap: 12px;
        }

        .card-link svg {
            width: 14px;
            height: 14px;
            fill: var(--primary-yellow);
        }

        .card-media {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
        }

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

        .item-card:hover .card-media img {
            transform: scale(1.03);
        }

        /* Comparison specific */
        .card-media.comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            background: transparent;
        }

        .comp-box {
            position: relative;
            height: 100%;
            border-radius: 6px;
            overflow: hidden;
        }

        .comp-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 28px;
            height: 28px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 16px;
            color: #fff;
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
        }

        .badge-success {
            background-color: #28a745;
        }

        .badge-danger {
            background-color: #dc3545;
        }

        /* --- FOOTER CTA --- */
        .footer-cta {
            background-color: var(--dark-bg);
            color: #ffffff;
            padding: 50px 0;
            border-bottom: 1px solid #22272b;
        }

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

        .cta-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .cta-phone-icon-bg {
            width: 68px;
            height: 68px;
            border-radius: 50%;
            border: 2px solid var(--primary-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cta-phone-icon-bg svg {
            width: 30px;
            height: 30px;
            fill: var(--primary-yellow);
        }

        .cta-title {
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 6px;
        }

        .cta-desc {
            font-size: 12px;
            color: #adb5bd;
            line-height: 1.4;
        }

        .cta-info-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #e9ecef;
        }

        .cta-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .cta-info-item svg {
            width: 16px;
            height: 16px;
            fill: var(--primary-yellow);
        }

        .btn-cta-contact {
            border: 1px solid var(--primary-yellow);
            color: var(--primary-yellow);
            background: transparent;
            padding: 14px 24px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 11px;
            letter-spacing: 0.8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: uppercase;
            transition: all 0.2s;
        }

        .btn-cta-contact:hover {
            background-color: var(--primary-yellow);
            color: #000;
        }

        .btn-cta-contact svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        /* --- FOOTER BOTTOM --- */
        footer {
            background-color: var(--dark-bg);
            color: #8a94a0;
            padding: 24px 0;
            font-size: 11px;
        }

        .footer-bottom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

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

		.footer-logo-badge {
			width: 42px;
			height: 42px;
			background: #000;
			display: flex;
			align-items: center;
			justify-content: center;
			flex-shrink: 0;
			margin: 15px 10px 15px 0px;
		}

        .footer-logo-badge svg {
            width: 24px;
            height: 24px;
            fill: var(--primary-yellow);
        }

        .footer-brand-title {
            color: #fff;
            font-weight: 900;
            font-size: 14px;
            line-height: 1;
            text-transform: uppercase;
        }

        .footer-brand-sub {
            font-size: 8px;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--primary-yellow);
            text-transform: uppercase;
            margin-top: 2px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #343a40;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .social-icon:hover {
            border-color: var(--primary-yellow);
            background: rgba(241, 179, 0, 0.1);
        }

        .social-icon svg {
            width: 14px;
            height: 14px;
            fill: #fff;
        }

        /* --- MOBILNA PRILAGOĐAVANJA I SIMETRIJA --- */
        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: flex;
            }

            .main-nav {
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: #111315;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
                border-top: 2px solid var(--primary-yellow);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
                padding: 0 24px;
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                text-align: center;
            }

            .main-nav.active {
                max-height: 480px;
                padding: 28px 24px;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 18px;
                width: 100%;
            }

            .main-nav a {
                color: #ffffff;
                font-size: 13px;
                letter-spacing: 1px;
                padding: 10px 0;
                display: block;
            }

            .btn-header-call {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
                padding: 12px 20px;
            }

            /* Simetrija celog mobilnog ekrana */
            .hero {
                padding-top: 30px;
                text-align: center;
            }

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

            .hero-content {
                padding-bottom: 40px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-subtitle {
                max-width: 100%;
            }

            .item-card {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
                justify-items: center;
            }

            .card-body {
                padding: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .card-link {
                justify-content: center;
            }

            .card-media {
                height: 220px;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
                align-items: center;
                gap: 28px;
            }

            .cta-left {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .cta-info-list {
                align-items: center;
            }

            .btn-cta-contact {
                width: 100%;
                max-width: 280px;
            }

            .footer-bottom-container {
                flex-direction: column;
                gap: 20px;
                text-align: center;
                align-items: center;
            }

            .footer-brand {
                flex-direction: column;
                align-items: center;
            }
        }
		
		/* Stilovi za linkove u footer sekciji */
		.cta-info-list a.cta-info-item,
		.btn-cta-contact,
		.footer-bottom-container a {
			color: #ffffff !important;
			text-decoration: none !important;
		}

		/* Hover efekat (opciono - održava belu boju i dodaje blagu providnost na prelaz) */
		.cta-info-list a.cta-info-item:hover,
		.footer-bottom-container a:hover {
			color: #ffffff !important;
			text-decoration: none !important;
			opacity: 0.85;
		}		
				
		