:root {
    --orange: #ff6a00;
    --orange-dark: #e65c00;
    --gray: #555;
    --light: #f8f9fa;
}

html {
    scroll-behavior: smooth; /* Smooth scroll */
    scroll-padding-top: 80px; /* Za navbar pri skrolu do sekcija */
}

body {
    font-family: 'Inter', sans-serif;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }
.lead { font-size: 1rem; }
small, .text-muted { font-size: 0.85rem; }

/* Navbar – solidna boja, shadow za vidljivost */
.navbar.bg-orange {
    background: var(--orange) !important;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.3) !important;
    z-index: 1030;
}

/* Hero – puna visina sa paddingom */
.hero {
    min-height: 70vh;
    max-height: 750px;
    height: 80dvh;
    display: flex;
    align-items: center;
    background: transparent !important;
    padding-top: 100px !important; /* za navbar */
    padding-bottom: 80px !important;
}

/* Suptilna pozadinska slika – support tim u kancelariji */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=85&fit=crop') center/cover no-repeat;
    opacity: 0.25;                    /* jedva se vidi */
    z-index: 0;
}

/* Narandžasti overlay preko slike */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.92) 0%, 
        rgba(255, 140, 26, 0.88) 50%, 
        rgba(255, 80, 0, 0.95) 100%);
    z-index: 1;
}

/* Grain efekat preko svega – daje premium osećaj */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
    pointer-events: none;
    z-index: 2;
}

/* Tekst u heroju – još malo finog podešavanja */
#hero h1 { font-size: clamp(2.2rem, 5vw, 2.7rem); }
#hero p { font-size: clamp(1rem, 2.5vw, 1.1rem); }
.pt-20 { padding-top: 80px; } /* Za navbar */

/* Razmak sekcija */
.py-100 { padding: 100px 0; }


.checks li {
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 32px;
    font-size: 1.02rem;
    line-height: 1.5;
}
/* Ček marke – prave, narandžaste, bez upitnika */
.check-icon {
    color: #ff6a00;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

/* How It Works – više prostora od slike */
#how .img-wrapper {
    margin-left: 3rem;
}
@media (max-width: 992px) {
    #how .img-wrapper { margin-left: 0; margin-top: 3rem; }
}
/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-form, .contact-sidebar {
    min-height: 100%;
}
.contact-sidebar {
    background: #fdfaf7;
    border: 1px solid rgba(255,102,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 3.5rem 3rem;
    height: 100%;
}
.contact-items {
    gap: 1.8rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform .3s;
}
.contact-item:hover {
    transform: translateX(6px);
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255,102,0,0.25);
}

/* Fensi prelazi */
[data-aos] {
    transition-property: transform, opacity;
}

/* How It Works – tekst je sad bolje centriran vertikalno i ima više prostora od slike */
#how .steps {
    max-width: 500px;
}

#how .row {
    align-items: center;
}
#how .col-lg-6:first-child {   /* tekst strana */
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* Steps – manji */
.step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 10px;
    margin-right: 1rem;
}
.step strong { font-size: 1rem; }
.step small { font-size: 0.85rem; }

/* Slike – overlay i hover */
.img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,102,0,0.1), transparent);
    z-index: 1;
}
.img-wrapper img { 
    transition: transform 0.4s; 
    position: relative;
    z-index: 2;
}
.img-wrapper:hover img { transform: scale(1.05); }

/* Pricing – manji */
.pricing-card {
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-8px); }
.pricing-card h3 { font-size: 1.8rem; }
.pricing-card li { font-size: 0.9rem; }

/* Dugmad */
.btn { 
    padding: 8px 20px; 
    font-size: 0.95rem; 
}
.btn-orange { 
    background: var(--orange); 
    color: white; 
    border: none; 
    border-radius: 50px; 
    transition: all 0.3s; 
}
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-orange { 
    border: 2px solid var(--orange); 
    color: var(--orange); 
    border-radius: 50px; 
}
.btn-outline-orange:hover { 
    background: var(--orange); 
    color: white; 
}

.border-orange { border: 3px solid var(--orange) !important; }
.badge-popular { 
    position: absolute; 
    top: -10px; 
    right: 15px; 
    background: var(--orange); 
    color: white; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 600; 
    z-index: 2; 
}

/* Hero pozadinska tekstura + blur */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,140,26,0.4), rgba(255,106,0,0.6));
    z-index: 0;
}

/* Veći, moderniji čekovi */
.checks.large li {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
}
.checks.large i {
    color: #ff6a00;
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

/* How It Works – ogroman razmak + bolji step brojevi */
#how .step-num {
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}
#how .step strong {
    font-size: 1.25rem;
    color: #222;
}
#how p.text-muted {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.2;
}

/* Bolji padding za sekcije */
.py-120 { padding: 120px 0; }

/* Forma – još čišća */
#contact .form-control,
#contact .form-select {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
}
#contact .form-control::placeholder {
    color: #999 !important;
    font-weight: 400;
}
#contact .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Smanjujemo veličinu teksta da bude elegantno */
h2 {
    font-size: 2.2rem !important;
}
.lead {
    font-size: 1.35rem !important;
}
.checks.large li {
    font-size: 1.05rem;        /* bilo 1.15rem */
    margin-bottom: 1.1rem;
}
#how strong {
    font-size: 1.15rem !important;
}
#how p.text-muted {
    font-size: 0.95rem;
}

#how strong,
#why .checks.large li {
    font-size: 1.05rem !important;
    line-height: 1.5;
}

#how .small,
#how p.text-muted {
    font-size: 0.92rem !important;
    line-height: 1.5;
}

/* Osiguravamo da se slike uvek učitavaju */
.img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}