/* =================================================================ij
   ŠLEP SLUŽBA BORČA - NOVI PREMIUM CSS DIZAJN 2026
   ================================================================ */

:root {
    --primary: #ff5722;
    --primary-dark: #e64a19;
    --secondary: #0b1120;
    --secondary-light: #1e293b;
    --accent: #22c55e;
    --accent-hover: #16a34a;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
    --border: #e2e8f0;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

/* =================================================================
   TOP BAR
   ================================================================ */
.top-bar {
    background: var(--secondary);
    color: #e2e8f0;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar i {
    color: var(--primary);
    margin-right: 6px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar a span {
    color: var(--accent);
    font-weight: 800;
}

/* =================================================================
   HEADER & NAVBAR
   ================================================================ */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    transition: var(--transition);
}

.header .logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.header .logo span {
    color: var(--primary);
}

.navbar {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.navbar a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.navbar a:hover {
    color: var(--primary);
}

.navbar a:hover::after {
    width: 100%;
}

@keyframes header-neon-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.header-cta {
    background: var(--accent);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    animation: header-neon-pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    animation: none;
}

.header-right-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

.hamburger {
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--secondary);
    background: none;
    border: none;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--primary);
}

/* =================================================================
   HERO SECTION
   ================================================================ */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,87,34,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 950px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.4);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
    color: #cbd5e1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes orange-neon-pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 87, 34, 0.3); }
    50% { transform: scale(1.04); box-shadow: 0 0 20px rgba(255, 87, 34, 0.8), 0 0 50px rgba(255, 87, 34, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 87, 34, 0.3); }
}

.btn-neon-orange {
    background: var(--primary);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    animation: orange-neon-pulse 2s infinite;
}

.btn-neon-orange:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    animation: none;
}

.btn-sec {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 18px 38px;
    font-size: 1.15rem;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-sec:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
    transform: translateY(-3px);
}

/* =================================================================
   SECTION STYLING
   ================================================================ */
section {
    padding: 90px 5%;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =================================================================
   ABOUT & SEO ARTICLE
   ================================================================ */
.seo-article h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 800;
}

.seo-article p {
    margin-bottom: 20px;
    color: var(--gray);
    text-align: justify;
    font-size: 1.05rem;
}

.seo-article strong {
    color: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 6px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h4 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 900;
}

.stat-box p {
    font-size: 0.98rem;
    color: var(--dark);
    margin-top: 5px;
    font-weight: 500;
}

/* =================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 5px solid var(--secondary);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.12);
    border-top-color: var(--primary);
}

.service-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 800;
}

.service-card p {
    color: var(--gray);
    font-size: 0.98rem;
}

/* =================================================================
   PROCESS GRID
   ================================================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.process-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-box:hover {
    transform: translateY(-5px);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 8px 16px rgba(255, 87, 34, 0.3);
}

.process-box h4 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 800;
}

.process-box p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* =================================================================
   PRICING TABLE
   ================================================================ */
.pricing-section {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card.featured {
    border-top-color: var(--primary);
    transform: scale(1.03);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-card i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 800;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
}

.price-card p {
    color: var(--gray);
    font-size: 0.98rem;
}

/* =================================================================
   FAQ SECTION
   ================================================================ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-box:hover {
    transform: translateX(5px);
}

.faq-box h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 800;
}

.faq-box p {
    color: var(--gray);
    font-size: 1.02rem;
    text-align: justify;
}

/* =================================================================
   EMERGENCY CTA BLOCK
   ================================================================ */
.emergency-cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: #fff;
    text-align: center;
    padding: 80px 30px;
    border-radius: 16px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.emergency-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.emergency-cta-section h2 span {
    color: var(--primary);
}

.emergency-cta-section p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

@keyframes emergency-btn-glow {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3); }
    50% { transform: scale(1.04); box-shadow: 0 0 25px rgba(34, 197, 94, 0.9), 0 0 50px rgba(34, 197, 94, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(34, 197, 94, 0.5), 0 0 30px rgba(34, 197, 94, 0.3); }
}

.emergency-phone-big {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.04);
    padding: 18px 45px;
    border-radius: 60px;
    border: 2px solid rgba(34, 197, 94, 0.5);
    margin-bottom: 25px;
    transition: var(--transition);
    animation: emergency-btn-glow 2s infinite;
}

.emergency-phone-big:hover {
    background: rgba(34, 197, 94, 0.12);
    transform: scale(1.03);
    animation: none;
}

.location-keywords-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 950px;
    margin: 30px auto 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.location-keywords-tags span {
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: var(--transition);
}

.location-keywords-tags span:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* =================================================================
   FOOTER
   ================================================================ */
footer {
    background: var(--secondary);
    color: #fff;
    padding: 70px 5% 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-col p, .footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.98rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    font-size: 0.9rem;
    color: var(--gray);
}

/* =================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ================================================================ */
@media (max-width: 900px) {
    .top-bar { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .header { padding: 12px 5%; }
    .header .logo { font-size: 1.2rem; }
    .desktop-cta { display: none; }
    .header-right-mobile { display: flex; }
    .header-cta { padding: 8px 14px; font-size: 0.85rem; }

    .navbar {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--border);
    }

    .navbar.active { max-height: 480px; }
    .navbar li { margin: 10px 0; text-align: center; width: 100%; }
    .navbar a { font-size: 1.05rem; display: block; padding: 5px 0; }
    
    .price-card.featured {
        transform: scale(1);
    }
}