/* === OSNOVNI STILI === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    overflow-x: hidden;
}

/* === SIDEBAR === */
.sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #2B4C7E 0%, #1e3a5f 100%);
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    height: 65px;
    width: auto;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.sidebar-nav .nav-link i {
    margin-right: 15px;
    font-size: 18px;
    color: #4DB8E8;
}

.sidebar-nav .nav-link:hover {
    background-color: rgba(77, 184, 232, 0.1);
    color: white;
    padding-left: 30px;
}

/* === OVERLAY === */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* === MAIN CONTENT === */
.main-content {
    transition: margin-left 0.3s ease;
}

/* === TOP NAVBAR === */
.top-navbar {
    background: linear-gradient(90deg, #2B4C7E 0%, #4DB8E8 100%);
    padding: 6px 20px;
    height: 72px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-right: 20px;
    padding: 5px 10px;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.menu-btn:hover {
    background-color: rgba(255,255,255,0.1);
}

.navbar-logo {
    height: 60px;
    width: auto;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 600px;
    background-image: url('/images/plosca.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 76, 126, 0.7);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.hero-content .subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #4DB8E8;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    color: #2B4C7E;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(77, 184, 232, 0.3);
}

.feature-card i {
    font-size: 40px;
    color: #4DB8E8;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2B4C7E;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
}

/* === HERO O NAS === */
.hero-onas {
    background-image: url('/images/onas.jpg');
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
        letter-spacing: 6px;
    }
    
    .hero-content .subtitle {
        font-size: 18px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .content-section {
        padding: 50px 15px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .navbar-logo {
        height: 35px;
    }
}
/* === NAVBAR RIGHT SIDE === */
.navbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* === LANGUAGE DROPDOWN === */
.lang-dropdown {
    position: relative;
}

.lang-selected {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.lang-selected:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.flag-img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    display: block;
}

.lang-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
    margin-left: 2px;
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a2f4e;
    border: 1px solid rgba(77, 184, 232, 0.25);
    border-radius: 10px;
    overflow: hidden;
    min-width: 170px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
}

.lang-dropdown.open .lang-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.lang-option .flag-img {
    flex-shrink: 0;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option:hover {
    background: rgba(77, 184, 232, 0.15);
    color: white;
}

.lang-option.active {
    background: rgba(77, 184, 232, 0.2);
    color: #4DB8E8;
}

@media (max-width: 768px) {
    .navbar-right {
        gap: 10px;
    }

    .lang-selected {
        padding: 6px 10px;
        font-size: 13px;
    }

    .lang-flag {
        font-size: 16px;
    }
}

/* === INTRO ANIMATION === */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #07111f 0%, #0f2039 50%, #07111f 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-overlay.hide {
    transform: translateY(-100%);
}

.intro-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(77, 184, 232, 0.07) 0%, transparent 70%);
    pointer-events: none;
    animation: introPulse 3s ease-in-out infinite;
}

@keyframes introPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-logo {
    opacity: 0;
    transform: translateY(28px);
    animation: introFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

.intro-logo img {
    height: 110px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(77, 184, 232, 0.35));
}

.intro-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4DB8E8, transparent);
    margin: 22px 0;
    animation: introLineGrow 0.9s ease forwards 0.9s;
}

.intro-tagline {
    opacity: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(77, 184, 232, 0.85);
    font-size: 13px;
    font-weight: 400;
    animation: introFadeIn 0.8s ease forwards 1.15s;
}

@keyframes introFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes introFadeIn {
    to { opacity: 1; }
}

@keyframes introLineGrow {
    to { width: 220px; }
}

/* =============================================
   HOMEPAGE - NOVE SEKCIJE
   ============================================= */

/* --- Sidebar CTA link --- */
.sidebar-nav .nav-link-cta {
    margin-top: 15px;
    background: rgba(77, 184, 232, 0.1);
    border-left: 3px solid #4DB8E8;
    color: #4DB8E8 !important;
}
.sidebar-nav .nav-link-cta:hover {
    background: rgba(77, 184, 232, 0.2);
}

/* --- Hero extras --- */
.hero-badge {
    display: inline-block;
    background: rgba(77, 184, 232, 0.15);
    border: 1px solid rgba(77, 184, 232, 0.35);
    color: #4DB8E8;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4DB8E8, #2B6CB0);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 184, 232, 0.35);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 184, 232, 0.5);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
}

/* --- Stats Bar --- */
.stats-bar {
    background: #0a1a2e;
    border-bottom: 1px solid rgba(77, 184, 232, 0.1);
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
}
.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #4DB8E8;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.07);
    align-self: stretch;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-label {
    display: inline-block;
    background: rgba(77, 184, 232, 0.08);
    border: 1px solid rgba(77, 184, 232, 0.25);
    color: #4DB8E8;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-header h2 {
    color: #2B4C7E;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-header p {
    color: #666;
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Products Overview --- */
.products-overview-section {
    background: #f0f4f8;
}
.product-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.product-overview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 76, 126, 0.15);
}
.product-card-header {
    padding: 36px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.product-card-header.film-faced {
    background-image: url('/images/film-faced.jpg');
    background-size: cover;
    background-position: center;
}
.product-card-header.film-faced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.6);
}
.product-card-header.filmeless {
    background-image: url('/images/filmeless.jpg');
    background-size: cover;
    background-position: center;
}
.product-card-header.filmeless::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.45);
}
.product-type-badge {
    position: relative;
    z-index: 1;
}
.product-card-header.antislip {
    background-image: url('/images/antislip.jpg');
    background-size: cover;
    background-position: center;
}
.product-card-header.antislip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.62);
}
.product-card-header.hexa {
    background-image: url('/images/hexa.jpg');
    background-size: cover;
    background-position: center;
}
.product-card-header.hexa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.62);
}
.product-card-header.birch {
    background-image: url('/images/birch.jpg');
    background-size: cover;
    background-position: center;
}
.product-card-header.birch::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 55, 0.55);
}
.product-card-header i {
    font-size: 52px;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    right: 25px;
    bottom: -5px;
    z-index: 1;
}

/* Product comparison table */
.product-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 8px;
}
.comparison-col {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 22px 24px;
}
.comparison-col h5 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dde4ee;
    color: #2B4C7E;
}
.comparison-col.preferred h5 {
    color: #1a7a4a;
    border-color: #1a7a4a;
}
.comparison-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comparison-col ul li {
    font-size: 14px;
    color: #555;
    padding: 5px 0 5px 22px;
    position: relative;
}
.comparison-col ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8a9ab5;
}
.comparison-col.preferred ul li::before {
    content: '✓';
    color: #1a7a4a;
    font-weight: 700;
}
.product-type-badge {
    background: rgba(77, 184, 232, 0.18);
    border: 1px solid rgba(77, 184, 232, 0.35);
    color: #4DB8E8;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.product-card-body {
    padding: 28px;
}
.product-card-body h3 {
    color: #2B4C7E;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}
.product-card-body > p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.product-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: #555;
    font-size: 13.5px;
    border-bottom: 1px solid #f2f2f2;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights li i { color: #4DB8E8; font-size: 11px; flex-shrink: 0; }
.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2B4C7E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.btn-card:hover { gap: 14px; color: #4DB8E8; }

/* --- Why Section --- */
.why-section {
    background: linear-gradient(135deg, #07111f 0%, #0f2039 100%);
}
.why-section .section-header h2 { color: white; }
.why-section .section-header p { color: rgba(255, 255, 255, 0.55); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}
.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}
.why-item:hover {
    background: rgba(77, 184, 232, 0.07);
    border-color: rgba(77, 184, 232, 0.18);
    transform: translateY(-3px);
}
.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(77, 184, 232, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.why-icon i { font-size: 20px; color: #4DB8E8; }
.why-item h4 { color: white; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.why-item p { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; line-height: 1.7; margin: 0; }

/* --- Process Section --- */
.process-section { background: white; }
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.process-step {
    flex: 1;
    min-width: 150px;
    max-width: 210px;
    text-align: center;
    padding: 20px 15px;
}
.process-number {
    font-size: 10px;
    font-weight: 700;
    color: #4DB8E8;
    letter-spacing: 3px;
    margin-bottom: 12px;
    opacity: 0.7;
}
.process-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, #2B4C7E, #4DB8E8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(77, 184, 232, 0.3);
}
.process-icon { position: relative; overflow: hidden; }
.process-icon i { font-size: 24px; color: white; }
.split-half {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
}
.split-half.left  {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    align-items: flex-start;
    justify-content: flex-start;
    padding: 9px 0 0 9px;
}
.split-half.right {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 9px 9px 0;
}
.split-half i { font-size: 18px; }
.split-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 150%;
    background: rgba(255,255,255,0.65);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.process-step h4 { color: #2B4C7E; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: #777; font-size: 13px; line-height: 1.6; margin: 0; }
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 33px;
    color: #4DB8E8;
    font-size: 16px;
    opacity: 0.4;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #1a2f4e 0%, #2B4C7E 100%);
    padding: 80px 20px;
    text-align: center;
}
.cta-content h2 { color: white; font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.cta-content p { color: rgba(255, 255, 255, 0.65); font-size: 17px; margin-bottom: 34px; }
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #4DB8E8;
    color: white;
    padding: 17px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(77, 184, 232, 0.4);
}
.btn-cta:hover {
    background: #3aa5d4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(77, 184, 232, 0.5);
}

/* =============================================
   PRODUKTI STRAN
   ============================================= */
.hero-produkti  { background-image: url('/images/products.jpg'); }
.hero-dostava   { background-image: url('/images/shipping.jpg'); }
.hero-aboutus   { background-image: url('/images/aboutus.jpg'); }
.hero-aplikacije { background-image: url('/images/vloga.jpg'); }

.product-detail-section { background: white; }
.product-detail-section.alt-bg { background: #f0f4f8; }

.product-detail-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}
.product-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 40px 30px;
    border-bottom: 1px solid #f0f0f0;
}
.product-detail-title h2 { color: #2B4C7E; font-size: 30px; font-weight: 700; margin: 10px 0 12px; }
.product-detail-title p { color: #666; font-size: 15px; line-height: 1.7; max-width: 600px; }
.product-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.film-faced-icon { background: linear-gradient(135deg, #1a2f4e, #2B4C7E); }
.filmeless-icon { background: linear-gradient(135deg, #0d1f38, #1a4060); }
.product-detail-icon i { font-size: 32px; color: rgba(255, 255, 255, 0.7); }

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0;
}
.specs-block {
    padding: 30px 35px;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.specs-block:last-child { border-right: none; }
.specs-block h4 {
    color: #2B4C7E;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.specs-block h4 i { color: #4DB8E8; }
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specs-list li {
    padding: 6px 0;
    color: #555;
    font-size: 13.5px;
    border-bottom: 1px solid #f5f5f5;
}
.specs-list li:last-child { border-bottom: none; }
.specs-table-wrapper { overflow-x: auto; }
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
}
.specs-table th {
    background: #f0f4f8;
    color: #2B4C7E;
    font-weight: 700;
    padding: 8px 12px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.specs-table td {
    padding: 8px 12px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}
.specs-table tr:last-child td { border-bottom: none; }

.product-cta {
    padding: 30px 40px;
    background: #f8fafb;
    border-top: 1px solid #f0f0f0;
}

/* =============================================
   UPORABE STRAN
   ============================================= */
.industries-section { background: white; }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 28px;
}
.industry-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(43, 76, 126, 0.12);
}
.industry-icon-wrap {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.industry-icon-wrap i { font-size: 44px; color: rgba(255, 255, 255, 0.85); }
.industry-body { padding: 28px; flex: 1; }
.industry-body h3 { color: #2B4C7E; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.industry-body > p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.industry-uses {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.industry-uses li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #555;
    font-size: 13.5px;
}
.industry-uses li i { color: #4DB8E8; font-size: 10px; flex-shrink: 0; }
.industry-product-tag {
    display: inline-block;
    background: #eef5fb;
    color: #2B4C7E;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   POVPRAŠEVANJE FORMA
   ============================================= */
.inquiry-hero {
    background: linear-gradient(135deg, #07111f 0%, #0f2039 100%);
    padding: 70px 20px 60px;
    text-align: center;
}
.inquiry-hero-content .section-label { margin-bottom: 12px; }
.inquiry-hero-content h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.inquiry-hero-content p { color: rgba(255, 255, 255, 0.6); font-size: 16px; }

.inquiry-section { background: #f0f4f8; padding: 60px 20px 80px; }
.inquiry-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.inquiry-form-wrap {
    background: white;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.inquiry-form label {
    color: #2B4C7E;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 7px;
}
.inquiry-form input,
.inquiry-form textarea {
    border: 1.5px solid #dde3eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafbfc;
    outline: none;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: #4DB8E8;
    box-shadow: 0 0 0 3px rgba(77, 184, 232, 0.12);
    background: white;
}
.inquiry-form textarea { resize: vertical; min-height: 120px; }
.form-check-group { margin-top: 5px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #555 !important;
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #4DB8E8;
    padding: 0;
    border: none;
    background: none;
}
.checkbox-label a { color: #4DB8E8; }
.field-error {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 4px;
}
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #4DB8E8, #2B6CB0);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 184, 232, 0.3);
    letter-spacing: 0.3px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 184, 232, 0.45);
}

/* Contact info sidebar */
.inquiry-contact-info {
    background: #1a2f4e;
    border-radius: 14px;
    padding: 35px 30px;
    color: white;
}
.inquiry-contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(77, 184, 232, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon i { font-size: 16px; color: #4DB8E8; }
.contact-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}
.contact-value {
    display: block;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}
a.contact-value:hover { color: #4DB8E8; }
.inquiry-info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
}
.inquiry-info-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: #4DB8E8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.inquiry-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.inquiry-info-box ul li {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.inquiry-info-box ul li:last-child { border-bottom: none; }
.inquiry-info-box ul li::before { content: "→ "; color: #4DB8E8; }

/* Success Page */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    padding: 80px 20px;
}
.success-content {
    text-align: center;
    max-width: 550px;
}
.success-icon {
    font-size: 72px;
    color: #4DB8E8;
    margin-bottom: 24px;
    animation: introFadeUp 0.6s ease forwards;
}
.success-content h1 {
    color: #2B4C7E;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
}
.success-content p { color: #666; font-size: 16px; line-height: 1.7; margin-bottom: 35px; }
.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .stats-container { flex-wrap: wrap; }
    .stat-item { flex: 0 0 50%; }
    .stat-divider { display: none; }
    .product-overview-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); padding: 0; }
    .section-header h2 { font-size: 26px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-content h2 { font-size: 24px; }
    .inquiry-container { grid-template-columns: 1fr; }
    .inquiry-form .form-row { grid-template-columns: 1fr; }
    .product-detail-header { flex-direction: column; }
    .product-specs-grid { grid-template-columns: 1fr; }
    .specs-block { border-right: none; }
}
/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: linear-gradient(180deg, #1a2a3e 0%, #0f1a2a 100%);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255,255,255,0.6);
}

.footer-links h5,
.footer-contact h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: #5a9fd4;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    color: #5a9fd4;
    width: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #5a9fd4;
}

.footer-bottom {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #5a9fd4;
}

/* =============================================
   O NAS PAGE
   ============================================= */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a2a3e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: linear-gradient(135deg, #f0f5fb 0%, #e8f0fa 100%);
    border: 1px solid #d0dff0;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2B4C7E;
    line-height: 1;
}

.about-stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { margin-top: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-text h2 { font-size: 26px; }
}

.label-optional {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin-left: 4px;
}

/* Polje z napako */
.inquiry-form input.input-error,
.inquiry-form textarea.input-error {
    border-color: #e53e3e !important;
    background: #fff5f5;
}

/* Hero logo slika (namesto h1 teksta) */
.hero-logo-img {
    height: 140px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer company podatki */
.footer-company {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: center;
    line-height: 1.8;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 32px;
}

.footer-company a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
}

.footer-company-sep {
    margin: 0 8px;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .hero-logo-img { height: 90px; }
    .footer-company { font-size: 11px; }
    .footer-company-sep { display: none; }
    .footer-company br { display: block; }
}

/* Slika produkta na Produkti strani */
.product-detail-img {
    flex-shrink: 0;
    width: 260px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-detail-img img:hover {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .product-detail-img {
        width: 100%;
        height: 200px;
    }
}

/* =============================================
   SHIPPING & QUALITY CLAIMS
   ============================================= */
.shipping-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.shipping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.shipping-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.shipping-intro-text h2 {
    color: #2B4C7E;
    font-size: 2rem;
    margin: 8px 0 20px;
}

.shipping-intro-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.shipping-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.shipping-card-header {
    background: linear-gradient(135deg, #1a2a3e, #2B4C7E);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.shipping-card-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.shipping-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.shipping-card-icon.claims {
    background: rgba(90,159,212,0.3);
}

.shipping-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 28px;
    border-bottom: 1px solid #f0f2f5;
}

.shipping-list li:last-child {
    border-bottom: none;
}

.shipping-key {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #2B4C7E;
}

.shipping-val {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.shipping-val a {
    color: #2B4C7E;
    text-decoration: none;
}

.shipping-val a:hover {
    color: #5a9fd4;
}

/* =============================================
   CERTIFICATIONS
   ============================================= */
.cert-section {
    padding: 60px 0 80px;
    background: #fff;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.cert-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.cert-card:hover {
    box-shadow: 0 8px 32px rgba(43,76,126,0.1);
    transform: translateY(-2px);
}

.cert-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cert-icon.ce   { background: #fff; padding: 4px; }
.cert-icon.en   { background: #fff; padding: 4px; }
.cert-icon.fsc  { background: #fff; padding: 4px; }
.cert-icon.iso  { background: #fff; padding: 4px; }

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.cert-icon i {
    font-size: 28px;
    color: #fff;
}

.cert-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2a3e;
    margin-bottom: 4px;
}

.cert-standard {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #2B4C7E;
    margin-bottom: 10px;
}

.cert-body p:last-child {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cert-note {
    font-size: 13px;
    color: #888;
    background: #f0f5fb;
    border-left: 3px solid #5a9fd4;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 8px;
}

.cert-note i {
    color: #5a9fd4;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .shipping-grid { grid-template-columns: 1fr; }
    .shipping-intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .cert-grid { grid-template-columns: 1fr; }
    .cert-card { flex-direction: column; }
}

/* =============================================
   MOBILE RESPONSIVE — dodatna pravila
   ============================================= */

/* Tablet (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .inquiry-container { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .shipping-intro-grid { gap: 32px; }
    .product-overview-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Mobilni (max 768px) */
@media (max-width: 768px) {
    /* Product comparison tabela — 2 stolpca → 1 */
    .product-comparison { grid-template-columns: 1fr; }

    /* Specs tabela — horizontalno drsenje */
    .specs-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .specs-table { min-width: 320px; }

    /* Product card */
    .product-detail-card { padding: 24px 16px; }
    .product-card-body { padding: 20px 16px; }

    /* Process ikone — manjše */
    .process-icon { width: 52px; height: 52px; }
    .process-icon i { font-size: 18px; }
    .process-step h4 { font-size: 13px; }
    .process-step p { font-size: 12px; }

    /* Cert ikone — manjše */
    .cert-icon { width: 56px; height: 56px; }
    .cert-card { gap: 14px; }

    /* Shipping */
    .shipping-intro-text h2 { font-size: 1.5rem; }
    .shipping-list li { padding: 12px 16px; }

    /* Hero */
    .hero-section { min-height: 320px; height: auto; background-attachment: scroll; }
    .hero-content { padding: 40px 20px; }
    .hero-content h1 { font-size: 36px; letter-spacing: 4px; }

    /* CTA */
    .cta-banner { padding: 48px 20px; }
    .cta-content h2 { font-size: 22px; }

    /* Gumbi */
    .btn-hero-primary, .btn-hero-secondary { padding: 12px 20px; font-size: 14px; }

    /* Sekcije */
    .content-section { padding: 48px 16px; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 24px; }

    /* Forme */
    .inquiry-form .form-row { grid-template-columns: 1fr; }
    .inquiry-container { grid-template-columns: 1fr; }
}

/* Mali telefoni (max 480px) */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 26px; letter-spacing: 2px; }
    .hero-content .subtitle { font-size: 14px; }
    .hero-section { min-height: 280px; height: auto; }

    .stats-container { flex-direction: column; align-items: center; }
    .stat-item { flex: 0 0 100%; text-align: center; }
    .stat-divider { display: none; }

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

    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; text-align: center; }
    .hero-actions { flex-direction: column; align-items: center; gap: 12px; }

    .content-section { padding: 36px 12px; }
    .section-header h2 { font-size: 20px; }

    .process-icon { width: 46px; height: 46px; }
    .process-steps { gap: 8px; }

    .footer-container { grid-template-columns: 1fr; gap: 24px; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    .product-detail-card { padding: 16px 12px; }
    .cert-icon { width: 48px; height: 48px; }
    .cta-content h2 { font-size: 20px; }
}




