/* ==========================================
   ŠLEP SLUŽBA TODOROVIĆ
   Dark charcoal + vivid orange
   Barlow Condensed + DM Sans
   ========================================== */

:root {
    --bg:          #0f1117;
    --bg-card:     #181c26;
    --bg-surface:  #1e2232;
    --border:      rgba(255,255,255,0.08);
    --border-med:  rgba(255,255,255,0.13);
    --orange:      #f97316;
    --orange-dark: #ea6a0a;
    --orange-glow: rgba(249,115,22,0.18);
    --white:       #ffffff;
    --text:        #e8eaf0;
    --text-muted:  #8b909e;
    --text-dim:    #5a6070;
    --light-bg:    #f4f5f7;
    --light-card:  #ffffff;
    --light-border:#e2e5ea;
    --radius:      10px;
    --radius-lg:   16px;
    --radius-xl:   22px;
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:           0.32s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.hidden { display: none !important; }

h1, h2, h3, .logo-main, .hero-title, .sec-title, .dark-about-title {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.02em;
}

i[class*="fa-"] { color: var(--orange); }

/* ===== SCROLL ANIMATIONS ===== */
.anim-fade, .anim-left, .anim-right, .anim-up {
    opacity: 0;
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.anim-left  { transform: translateX(-50px); }
.anim-right { transform: translateX(50px); }
.anim-up    { transform: translateY(40px); }
.anim-fade.vis, .anim-left.vis, .anim-right.vis, .anim-up.vis { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.45s; }

/* ===== FLOATING TRUCKS ===== */
@keyframes floatAnim  { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-0.5deg); } }
@keyframes floatAnimB { 0%,100% { transform: translateY(0) scaleX(-1); } 50% { transform: translateY(-12px) scaleX(-1); } }
@keyframes floatAnimC { 0%,100% { transform: translateY(0) scaleX(-1) rotate(0.3deg); } 50% { transform: translateY(-18px) scaleX(-1) rotate(-0.3deg); } }

.float-truck {
    pointer-events: none;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.7));
    position: absolute;
    z-index: 4;
    max-width: 100%;
    transition: opacity 0.4s ease-in-out;
}
.float-truck-1 {
    right: -2%; bottom: 4%;
    width: clamp(260px, 44vw, 600px);
    animation: floatAnim 4.2s ease-in-out infinite;
}
.float-truck-3 {
    right: 2%; bottom: -10px;
    width: clamp(180px, 28vw, 380px);
    animation: floatAnimC 4.8s ease-in-out 0.6s infinite;
    opacity: 0.9;
}

/* ===== DIVIDERS ===== */
.orange-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.4;
}

/* ===== CONTAINERS ===== */
.sec-container { max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.sec-header { text-align: center; margin-bottom: 48px; }
.sec-kicker {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 10px;
    display: block;
}
.sec-title {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
    color: var(--white); line-height: 1.05; text-transform: uppercase;
}
.sec-title span { color: var(--orange); }
.dark-sec-title { color: #1a1f36; }
.dark-sec-title span { color: var(--orange-dark); }
.sec-sub { color: var(--text-muted); font-size: 0.95rem; max-width: 520px; margin: 12px auto 0; }
.dark-sec-sub { color: #666; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent;
    transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}
.navbar::after {
    content: '';
    position: absolute; bottom: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0; transition: opacity var(--t);
}
.navbar.scrolled {
    background: rgba(15,17,23,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.navbar.scrolled::after { opacity: 0.4; }

.nav-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }


.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 900; color: #000; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-size: 1rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.logo-sub  { font-size: 0.62rem; font-weight: 600; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }
.logo-img {
    height: 80px;
    width: auto;
}

.desktop-nav { display: flex; gap: 2px; margin-left: auto; margin-right: 16px; }
.desktop-nav a { padding: 8px 14px; font-size: 0.87rem; font-weight: 600; color: var(--text-muted); border-radius: 8px; transition: all 0.2s; }
.desktop-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-call-btn { display: flex; align-items: center; gap: 7px; background: var(--orange); color: #000; font-weight: 700; font-size: 0.87rem; padding: 9px 18px; border-radius: 8px; transition: all 0.2s; }
.nav-call-btn i { color: #000; font-size: 0.82rem; }
.nav-call-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; background: rgba(255,255,255,0.07); border: 1px solid var(--border-med); border-radius: 8px; padding: 7px; }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: fixed; top: 68px; left: 0; width: 100%; background: var(--bg-card); border-bottom: 1px solid var(--border); z-index: 999; flex-direction: column; padding: 14px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 13px 16px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; border: 1px solid var(--border); text-align: center; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .m-call { background: var(--orange); color: #000; border-color: var(--orange); font-weight: 800; }
.mobile-nav .m-call i { color: #000; }

@media (max-width: 991px) { .hamburger { display: flex; } .desktop-nav { display: none; } .nav-call-btn { display: none; } }
@media (min-width: 992px) { .hamburger { display: none; } .mobile-nav { display: none !important; } }

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; padding-top: 70px;
}

/* Background slider */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-1 { background-image: url('1.webp'); }
.hero-slide-2 { background-image: url('2.webp'); }
.hero-slide-3 { background-image: url('3.webp'); }

.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(15,17,23,0.92) 0%, rgba(15,17,23,0.75) 50%, rgba(15,17,23,0.6) 100%);
}
.hero-bg-grid {
    position: absolute; inset: 0; z-index: 2;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px; margin: 0 auto; padding: 60px 24px;
    width: 100%; position: relative; z-index: 3;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(249,115,22,0.4); background: rgba(249,115,22,0.1);
    color: var(--orange); font-size: 0.78rem; font-weight: 700;
    padding: 7px 16px; border-radius: 50px; margin-bottom: 22px; letter-spacing: 0.5px;
}
.badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(0.7); } }

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
    color: var(--white); line-height: 0.95; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title-accent {
    color: var(--orange); display: block; position: relative;
}
.hero-title-accent::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 80px; height: 4px; background: var(--orange); border-radius: 2px;
}

.hero-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
    color: var(--orange); letter-spacing: 2px; line-height: 1;
    margin-bottom: 16px; display: block;
}

.hero-desc { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 440px; line-height: 1.65; margin-bottom: 22px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.trust-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 7px 14px; border-radius: 50px; font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.check { color: var(--orange); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary-hero { display: inline-flex; align-items: center; gap: 9px; background: var(--orange); color: #000; font-weight: 800; font-size: 0.95rem; padding: 14px 26px; border-radius: var(--radius); transition: all 0.2s; }
.btn-primary-hero i { color: #000; }
.btn-primary-hero:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary-hero { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--white); font-weight: 700; font-size: 0.95rem; padding: 14px 26px; border-radius: var(--radius); border: 1px solid var(--border-med); transition: all 0.2s; }
.btn-secondary-hero i { color: var(--orange); font-size: 0.85rem; }
.btn-secondary-hero:hover { border-color: var(--orange); background: var(--orange-glow); }

.scroll-down-btn { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 5; color: rgba(255,255,255,0.5); font-size: 1.2rem; animation: bounceDown 2s ease-in-out infinite; text-decoration: none; }
.scroll-down-btn i { color: rgba(255,255,255,0.5); }
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== PAYMENT STRIP ===== */
.payment-strip { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.payment-inner { max-width: 1100px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.pay-item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.pay-item i { color: var(--orange); }
.pay-cards { gap: 10px; }
.pay-cards span { color: var(--text-muted); font-size: 0.82rem; }
.pay-cards i { font-size: 1.4rem; }

/* ===== SERVICES ===== */
.services-section { background: var(--light-bg); }
.services-section .sec-kicker { color: var(--orange-dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.service-card { background: var(--white); border: 1.5px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.22s; }
.service-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(249,115,22,0.12); transform: translateY(-3px); }

.sc-img-wrap { width: 100%; height: 160px; overflow: hidden; position: relative; }
.sc-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, var(--white)); }
.sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .sc-img-wrap img { transform: scale(1.06); }

.sc-icon-badge { width: 48px; height: 48px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: -24px auto 0; position: relative; z-index: 2; box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.sc-icon-badge i { color: #000; font-size: 1.2rem; }

.sc-body { padding: 14px 20px 20px; }
.sc-body h3 { font-size: 1.1rem; font-weight: 800; color: #1a1f36; text-transform: uppercase; margin: 10px 0 6px; letter-spacing: 0.3px; }
.sc-body p { font-size: 0.86rem; color: #666; line-height: 1.6; }
.sc-price { display: inline-block; margin-top: 12px; background: rgba(249,115,22,0.1); color: var(--orange-dark); font-weight: 800; font-size: 0.8rem; padding: 4px 12px; border-radius: 50px; border: 1px solid rgba(249,115,22,0.2); }

.sc-cta-card { background: var(--bg); border-color: var(--bg); display: flex; align-items: center; justify-content: center; min-height: 260px; }
.sc-cta-inner { text-align: center; padding: 24px; }
.sc-cta-inner > i { font-size: 2rem; color: var(--orange); margin-bottom: 12px; }
.sc-cta-inner h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 8px; }
.sc-cta-inner p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.btn-orange-sm { display: inline-flex; align-items: center; gap: 7px; background: var(--orange); color: #000; font-weight: 800; font-size: 0.87rem; padding: 11px 20px; border-radius: var(--radius); transition: all 0.2s; }
.btn-orange-sm i { color: #000; font-size: 0.82rem; }
.btn-orange-sm:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ===== WHY SECTION ===== */
.why-section { background: var(--light-bg); }
.why-section .sec-kicker { color: var(--orange-dark); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }

.why-card { position: relative; }
.why-card-inner { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--light-border); transition: all var(--t); height: 100%; position: relative; }
.why-card-inner:hover { border-color: var(--orange); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,0.1), 0 0 0 1px rgba(249,115,22,0.15), 0 8px 24px rgba(249,115,22,0.15); }

.why-card-img-wrap { width: 100%; height: 180px; overflow: hidden; position: relative; }
.why-card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, var(--white)); }
.why-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.why-card-inner:hover .why-card-img { transform: scale(1.06); }

.why-card-icon-wrap { width: 52px; height: 52px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: -26px auto 0; position: relative; z-index: 2; box-shadow: 0 8px 24px rgba(249,115,22,0.35); color: #000; }
.why-card-icon-wrap i { color: #000; }

.why-card-body { padding: 16px 22px 24px; }
.why-card-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800; color: #1a1f36; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 0.3px; }
.why-card-body p { font-size: 0.84rem; color: #666; line-height: 1.7; }

.why-card-inner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); transform: scaleX(0); transition: transform var(--t); transform-origin: left; }
.why-card-inner:hover::after { transform: scaleX(1); }

/* ===== REVIEWS ===== */
.reviews-header { text-align: center; margin-bottom: 32px; }
.reviews-google-bar { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2); border-radius: 50px; padding: 8px 18px; margin: 12px auto 0; }
.stars-big { color: #f59e0b; letter-spacing: 2px; font-size: 1.1rem; }
.rating-num { font-weight: 800; color: #1a1f36; font-size: 0.95rem; }
.rating-label { color: #888; font-size: 0.82rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.review-card { background: var(--white); border: 1.5px solid var(--light-border); border-radius: var(--radius-lg); padding: 20px; transition: all 0.2s; }
.review-card:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(249,115,22,0.1); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.88rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.9rem; color: #1a1f36; }
.review-meta { font-size: 0.76rem; color: #888; margin-top: 2px; }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; margin-bottom: 8px; }
.review-text { font-size: 0.86rem; color: #555; line-height: 1.65; }

.btn-google-reviews { display: inline-flex; align-items: center; gap: 9px; background: var(--white); color: #444; border: 1.5px solid var(--light-border); font-weight: 700; font-size: 0.87rem; padding: 12px 24px; border-radius: 50px; transition: all 0.2s; }
.btn-google-reviews:hover { border-color: var(--orange); color: var(--orange-dark); }

/* ===== DARK ABOUT SECTION ===== */
.dark-about-section { background: #181200; padding: 96px 6%; position: relative; overflow: hidden; }
.dark-about-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(249,115,22,0.06) 0%, transparent 70%); pointer-events: none; }

.dark-about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.section-label-dark { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); padding: 7px 14px; border-radius: 50px; margin-bottom: 16px; }
.section-label-dark i { color: var(--orange); font-size: 0.78rem; }

.dark-about-title { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; }
.dark-about-title span { color: var(--orange); }

.dark-about-section p { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.85; margin-bottom: 14px; }

.company-info-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius); padding: 20px 24px; margin-top: 24px; color: rgba(255,255,255,0.65); font-size: 0.87rem; line-height: 2.1; }
.company-info-box strong { color: var(--orange); font-weight: 600; }
.company-info-box a { color: var(--white); font-weight: 600; }
.company-info-box a:hover { color: var(--orange); }

.dark-about-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.dark-list-box { background: #1d1800; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(249,115,22,0.2); transition: all var(--t); }
.dark-list-box:hover { border-color: var(--orange); box-shadow: 0 8px 28px rgba(249,115,22,0.1); }
.dark-list-alt { border-color: rgba(255,255,255,0.07); }
.dark-list-alt:hover { border-color: rgba(255,255,255,0.2); box-shadow: none; }

.dlb-header { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); padding: 12px 20px; text-align: center; }
.dark-list-alt .dlb-header { background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.dlb-header h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 800; color: #000; text-transform: uppercase; letter-spacing: 0.5px; }
.dark-list-alt .dlb-header h3 { color: var(--white); }

.dlb-body { padding: 16px 20px 18px; }
.dlb-body ul { list-style: none; }
.dlb-body ul li { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 10px; }
.dlb-body ul li:last-child { border-bottom: none; }
.dlb-body ul li::before { content: ''; width: 16px; height: 16px; background: var(--orange); border-radius: 50%; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 9px; }

.dark-right-img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 24px 72px rgba(0,0,0,0.55); border: 1px solid rgba(249,115,22,0.12); }

/* ===== GALLERY ===== */
.gallery-section { background: #100d00; padding: 80px 0; }
.gallery-section .sec-container { padding-bottom: 0; }
.gallery-section .sec-title { color: var(--white); }
.gallery-section .sec-kicker { color: var(--orange); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; grid-auto-flow: dense; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border: 1px solid rgba(255,255,255,0.07); transition: border-color var(--t); }
.gallery-featured { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover { border-color: rgba(249,115,22,0.4); }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,13,0,0.9)); padding: 36px 18px 18px; pointer-events: none; transform: translateY(100%); transition: transform 0.36s var(--ease); }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--orange); text-transform: uppercase; margin-bottom: 4px; }
.gallery-overlay p { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* Hidden gallery items (beyond first 6 + featured) */
.gallery-grid .gallery-item:nth-child(n+12) { display: none; }
.gallery-grid.expanded .gallery-item:nth-child(n+12) { display: block; }

.btn-gallery-more { display: inline-flex; align-items: center; gap: 9px; background: transparent; color: var(--orange); padding: 13px 36px; border-radius: 50px; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.5px; border: 2px solid var(--orange); cursor: pointer; transition: all var(--t); font-family: 'DM Sans', sans-serif; }
.btn-gallery-more:hover { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #000; border-color: transparent; box-shadow: 0 8px 28px rgba(249,115,22,0.35); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 2.5rem; color: rgba(255,255,255,0.8); cursor: pointer; line-height: 1; transition: color 0.2s; z-index: 10000; }
.lightbox-close:hover { color: var(--orange); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: rgba(255,255,255,0.7); cursor: pointer; padding: 10px 18px; transition: color 0.2s; user-select: none; line-height: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--orange); }

/* ===== COUNTERS ===== */
.counters-section { background: var(--bg); padding: 120px 6% 80px; position: relative; overflow: visible; }
.counters-section::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 300px; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(249,115,22,0.06) 0%, transparent 70%); pointer-events: none; }

.counters-vehicle-wrap { position: absolute; top: -50px; left: 10%; z-index: 3; }
.counters-vehicle-img { width: clamp(220px, 32vw, 420px); filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)); animation: floatAnim 4.4s ease-in-out 0.5s infinite; }

.counters-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.section-label-counter { display: inline-flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); padding: 7px 14px; border-radius: 50px; }
.section-label-counter i { color: var(--orange); }

.counters-title { text-align: center; margin-bottom: 56px; }
.counters-title h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 900; color: var(--white); margin: 16px 0 10px; text-transform: uppercase; }
.counters-title h2 span { color: var(--orange); }
.counters-title p { color: rgba(255,255,255,0.5); font-size: 0.96rem; }
.counters-title p em { color: var(--orange); font-style: italic; }

.counters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.counter-box { background: var(--bg-card); border: 1px solid rgba(249,115,22,0.2); border-radius: var(--radius-lg); padding: 44px 24px 32px; text-align: center; position: relative; overflow: hidden; transition: all var(--t); cursor: default; }
.counter-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-dark)); transform: scaleX(0); transition: transform var(--t); }
.counter-box:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(249,115,22,0.15), 0 12px 40px rgba(0,0,0,0.4); transform: translateY(-4px); }
.counter-box:hover::before { transform: scaleX(1); }

.counter-num { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(60px, 7vw, 88px); font-weight: 900; color: var(--orange); line-height: 1; display: block; margin-bottom: 14px; }
.counter-num sup { font-size: 36%; vertical-align: super; }
.counter-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); display: block; transition: color var(--t); }
.counter-box:hover .counter-label { color: var(--orange); }

/* ===== KALKULATOR ===== */
.calc-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.calc-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }

.calc-info .sec-title { text-align: left; }
.calc-info .sec-sub { margin-left: 0; text-align: left; }
.calc-info-pills { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.info-pill { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.info-pill i { color: var(--orange); width: 16px; text-align: center; }

.calc-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; }
.calc-title-row { display: flex; align-items: center; gap: 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.calc-title-row i { color: var(--orange); }

.vehicle-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.vehicle-btn { background: var(--bg-surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px 12px; cursor: pointer; text-align: center; transition: all 0.2s; color: var(--text); }
.vehicle-btn:hover { border-color: rgba(249,115,22,0.4); }
.vehicle-btn.active { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.vb-icon { margin-bottom: 6px; }
.vb-icon i { font-size: 1.5rem; color: var(--orange); }
.vb-name { display: block; font-weight: 800; font-size: 0.95rem; color: var(--white); text-transform: uppercase; }
.vb-price { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; }
.vehicle-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-bottom: 18px; }

.calc-field { margin-bottom: 14px; }
.calc-field label { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 7px; }
.calc-field label i { color: var(--orange); font-size: 0.82rem; }
.input-wrap { position: relative; }
.custom-input { width: 100%; background: var(--bg-surface); border: 1.5px solid var(--border); color: var(--white); padding: 13px 16px; border-radius: var(--radius); outline: none; transition: border-color 0.2s; font-size: 0.93rem; font-family: 'DM Sans', sans-serif; }
.custom-input::placeholder { color: var(--text-dim); }
.custom-input:focus { border-color: var(--orange); }

.dropdown-list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border-med); border-radius: var(--radius); box-shadow: 0 12px 32px rgba(0,0,0,0.5); list-style: none; z-index: 200; max-height: 220px; overflow-y: auto; display: none; }
.dropdown-list li { padding: 11px 16px; font-size: 0.88rem; font-weight: 500; color: var(--text); cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.dropdown-list li:last-child { border-bottom: none; }
.dropdown-list li:hover { background: rgba(249,115,22,0.1); color: var(--white); }

.calc-btn { width: 100%; background: var(--orange); color: #000; font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 15px; border-radius: var(--radius); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; transition: all 0.2s; }
.calc-btn i { color: #000; }
.calc-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.calc-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.result-box { margin-top: 20px; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.result-header { background: rgba(249,115,22,0.12); border-bottom: 1px solid rgba(249,115,22,0.2); padding: 12px 18px; display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.9rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.5px; }
.result-header i { color: var(--orange); }
.result-grid { padding: 16px 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.result-item { display: flex; flex-direction: column; gap: 3px; }
.result-label { font-size: 0.72rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.result-val { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.result-price-item { grid-column: span 2; }
.result-price { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.result-note { padding: 0 18px; font-size: 0.78rem; color: var(--text-dim); }
.map-container { height: 220px; margin: 14px 0 0; border-top: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }

/* ===== PRICING ===== */
.pricing-section { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }

.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; transition: all 0.2s; }
.price-card:hover { border-color: rgba(249,115,22,0.35); }
.price-card-featured { border-color: var(--orange); background: linear-gradient(135deg, var(--bg-card), rgba(249,115,22,0.06)); position: relative; }
.price-card-featured::before { content: 'POPULARNO'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #000; font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 900; padding: 4px 14px; border-radius: 50px; letter-spacing: 1px; }

.pc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pc-header i { font-size: 1.4rem; color: var(--orange); }
.pc-header h3 { font-size: 1.1rem; font-weight: 900; color: var(--white); text-transform: uppercase; }
.pc-main-price { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.pc-main-price span { font-size: 1.2rem; color: var(--text-muted); }
.pc-desc { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 18px; font-weight: 600; }
.pc-list { display: flex; flex-direction: column; gap: 8px; }
.pc-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; font-size: 0.84rem; }
.pc-row span { color: var(--text-muted); }
.pc-row strong { color: var(--white); font-weight: 800; }
.pc-row-special { border-color: rgba(249,115,22,0.2); background: rgba(249,115,22,0.05); }
.pc-row-special strong { color: var(--orange); }
.pricing-note { text-align: center; font-size: 0.8rem; color: var(--text-dim); }

/* ===== FAQ ===== */
.faq-section { background: var(--light-bg); }
.faq-section .sec-kicker { color: var(--orange-dark); }

.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
.faq-header-col .sec-title { text-align: left; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--white); border: 1.5px solid var(--light-border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s; }
.faq-item.open { border-color: var(--orange); box-shadow: 0 8px 28px rgba(249,115,22,0.1); }

.faq-toggle { width: 100%; background: none; border: none; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.93rem; font-weight: 700; color: #1a1f36; cursor: pointer; text-align: left; transition: color 0.2s; }
.faq-item.open .faq-toggle { color: var(--orange-dark); }

.faq-chevron { width: 28px; height: 28px; border-radius: 50%; background: #f1f3f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.35s, background 0.2s; }
.faq-chevron svg { width: 13px; height: 13px; stroke: #666; stroke-width: 2.5; fill: none; transition: stroke 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--orange); }
.faq-item.open .faq-chevron svg { stroke: #000; }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: #666; font-size: 0.87rem; line-height: 1.8; padding: 0 20px; border-top: 1px solid transparent; }
.faq-item.open .faq-content { max-height: 300px; padding: 0 20px 18px; border-top-color: var(--light-border); }

/* ===== CTA SECTION ===== */
.cta-section { background: #0a0800; padding: 100px 6% 120px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(249,115,22,0.025) 0px, rgba(249,115,22,0.025) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(-45deg, rgba(249,115,22,0.025) 0px, rgba(249,115,22,0.025) 1px, transparent 1px, transparent 60px); pointer-events: none; }
.cta-section::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(249,115,22,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }

.emergency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,80,80,0.15); border: 1px solid rgba(255,80,80,0.3); color: #ff6b6b; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 24px; }
.pulse-dot { width: 7px; height: 7px; background: #ff6b6b; border-radius: 50%; animation: pulseDot 1.2s ease-in-out infinite; }

.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 14px; text-transform: uppercase; }
.cta-section p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-phone-big { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; color: var(--orange); letter-spacing: 4px; line-height: 1; margin-bottom: 36px; display: block; transition: all var(--t); }
.cta-phone-big:hover { letter-spacing: 6px; text-shadow: 0 0 40px rgba(249,115,22,0.5); }

.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-main { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #000; padding: 16px 40px; border-radius: 50px; font-weight: 800; font-size: 1rem; transition: all var(--t); box-shadow: 0 8px 32px rgba(249,115,22,0.35); }
.cta-btn-main i { color: #000; }
.cta-btn-main:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(249,115,22,0.45); }
.cta-btn-email { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.08); color: var(--white); padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 0.96rem; border: 1px solid rgba(255,255,255,0.15); transition: all var(--t); }
.cta-btn-email i { color: var(--orange); }
.cta-btn-email:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-card); border-top: 1px solid rgba(249,115,22,0.15); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 56px 24px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-desc { color: var(--text-dim); font-size: 0.86rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col a { display: flex; align-items: center; gap: 9px; color: var(--text-dim); font-size: 0.86rem; font-weight: 500; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col a i { color: var(--orange); width: 14px; font-size: 0.82rem; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: var(--text-dim); transition: color 0.2s; font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== MOBILE CTA ===== */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 999; }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #000; text-align: center; font-weight: 800; font-size: 1rem; padding: 16px 20px; }
.mobile-cta a i { color: #000; }

/* ===== BACK TO TOP ===== */
.backtotop { position: fixed; bottom: 80px; right: 16px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #000; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform var(--t); z-index: 998; box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
.backtotop i { color: #000; }
.backtotop.visible { opacity: 1; pointer-events: auto; }
.backtotop:hover { transform: scale(1.12) translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { display: block; }
    .float-truck-1 { position: relative; right: auto; bottom: auto; width: clamp(220px, 60vw, 400px); margin: 32px auto -40px; display: block; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 24px; }
    .dark-about-inner { grid-template-columns: 1fr; gap: 40px; }
    .counters-vehicle-wrap { display: none; }
    .counters-section { padding-top: 80px; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .calc-layout { grid-template-columns: 1fr; gap: 32px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .hamburger { display: flex; }
    .desktop-nav, .nav-call-btn { display: none; }
    .mobile-cta { display: block; }
    .backtotop { bottom: 80px; }
    .float-truck-1 { width: clamp(200px, 70vw, 340px); }
    .hero-trust { justify-content: flex-start; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-featured { grid-column: span 2; grid-row: span 2; }
    .dark-about-lists { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-section { padding: 80px 5% 100px; }
    .payment-inner { gap: 16px; }
}

@media (max-width: 600px) {
    .sec-container { padding: 56px 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-featured { grid-column: span 1; }
    .counters-grid { grid-template-columns: 1fr; }
    .vehicle-toggle { grid-template-columns: 1fr; }
    .calc-box { padding: 20px; }
    .hero-actions { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
    .result-grid { grid-template-columns: 1fr; }
    .result-price-item { grid-column: 1; }
    .cta-btns { flex-direction: column; align-items: center; }
    .pricing-grid { max-width: 100%; }
    .reviews-grid { grid-template-columns: 1fr; }
    .dark-about-section { padding: 56px 5%; }
}
