/* =========================================
   1. GLOBALNE PROMENLJIVE I RESET
   ========================================= */
:root {
    --bg-dark: #050b14;
    --gold: #D4AF37;
    --gold-dark: #aa8923;
    --orange: #FF6B00;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --glass: rgba(255, 255, 255, 0.05);
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
    margin: 0; padding: 0;
}

body.no-scroll { overflow: hidden; }

/* FIX ZA SKROLOVANJE (Da header ne prekrije naslov) */
section { scroll-margin-top: 150px; }
@media (max-width: 991px) { section { scroll-margin-top: 100px; } }

/* GLOBALNI TEKST FIX */
.text-muted { color: #b0b0b0 !important; }
h1, h2, h3, h4, h5, h6, p, a, li, span, div, button { font-family: var(--font-main); }

/* ZAJEDNIČKA ANIMIRANA POZADINA (MREŽA) */
.light-pattern-bg {
    position: absolute; top: 0; left: 0; width: 200%; height: 200%; z-index: 1; opacity: 0.6;
    background-image: linear-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(212, 175, 55, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: bg-pan 60s linear infinite;
}
@keyframes bg-pan { 0% { transform: translate(0, 0); } 100% { transform: translate(-50px, -50px); } }

/* =========================================
   2. LUXURY TICKER
   ========================================= */
.luxury-ticker { 
    background: #000; color: #ccc; font-size: 14px; 
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); 
    z-index: 1050; position: relative; 
}
.ticker-wrap { width: 100%; white-space: nowrap; overflow: hidden; }
.ticker-item { display: inline-block; padding-left: 100%; animation: ticker 180s linear infinite; }
.ticker-separator { color: var(--gold); margin: 0 25px; font-size: 16px; }
.luxury-ticker:hover .ticker-item { animation-play-state: paused; cursor: default; }
@keyframes ticker { 100% { transform: translate3d(-100%, 0, 0); } }

/* =========================================
   3. NAVIGACIJA & HAMBURGER MENI
   ========================================= */
.glass-nav { 
    top: 45px; padding: 10px 0; 
    background: rgba(5, 11, 20, 0.85); backdrop-filter: blur(12px); 
    border-bottom: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
    z-index: 2000 !important; /* FIX: Iznad overlay menija */
}

/* Logo */
.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; }
.brand-name { font-family: var(--font-accent); font-weight: 700; font-size: 22px; line-height: 1; color: white; }
.brand-sub { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 700; display: block; }

/* Desktop Meni */
.desktop-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 20px; }
.nav-link { color: rgba(255,255,255,0.8); text-decoration: none; text-transform: uppercase; font-size: 13px; font-weight: 600; letter-spacing: 1px; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.btn-desktop-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 14px; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.btn-desktop-cta:hover { background: var(--gold); color: #000; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

/* Hamburger Dugme (Mobile Fixes Included) */
.hamburger-btn { 
    width: 45px; height: 45px; 
    background: rgba(212, 175, 55, 0.1); border: 1px solid var(--gold); 
    border-radius: 50%; cursor: pointer; 
    position: relative; 
    z-index: 2001 !important; /* FIX: Najviši element */
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; 
    transition: 0.3s; backdrop-filter: blur(5px); 
}
.hamburger-btn:hover { background: var(--gold); } 
.hamburger-btn:hover .bar { background: #000; }
.bar { width: 22px; height: 2px; background: var(--gold); transition: 0.4s; }

/* Animacija u X i promena boje u belo */
.hamburger-btn.active { border-color: transparent; }
.hamburger-btn.active .bar { background-color: #ffffff !important; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
.hamburger-btn.active .top { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active .mid { opacity: 0; }
.hamburger-btn.active .bot { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay Meni (Full Screen) */
.overlay-menu { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(5, 11, 20, 0.98); backdrop-filter: blur(20px); 
    z-index: 1500; 
    display: flex; align-items: center; justify-content: center; 
    opacity: 0; visibility: hidden; transition: all 0.4s ease-in-out; 
}
.overlay-menu.open { opacity: 1; visibility: visible; }

.menu-content { 
    width: 100%; height: 100%; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    overflow-y: auto; padding-bottom: 100px; 
}

/* FIX ZA MOBILNI PRIKAZ MENIJA */
@media (max-width: 991px) {
    .overlay-menu .menu-content {
        justify-content: flex-start !important; 
        padding-top: 130px !important; /* Gura linkove ispod headera */
    }
    .overlay-menu .menu-item { margin: 10px 0 !important; }
}

.menu-list { list-style: none; padding: 0; text-align: center; margin-bottom: 40px; }
.menu-item { margin: 15px 0; transform: translateY(20px); opacity: 0; transition: 0.5s; }
.overlay-menu.open .menu-item:nth-child(1) { transition-delay: 0.1s; transform: translateY(0); opacity: 1; }
.overlay-menu.open .menu-item:nth-child(2) { transition-delay: 0.2s; transform: translateY(0); opacity: 1; }
.overlay-menu.open .menu-item:nth-child(3) { transition-delay: 0.3s; transform: translateY(0); opacity: 1; }
.overlay-menu.open .menu-item:nth-child(4) { transition-delay: 0.4s; transform: translateY(0); opacity: 1; }
.overlay-menu.open .menu-item:nth-child(5) { transition-delay: 0.5s; transform: translateY(0); opacity: 1; }

.menu-link { font-family: var(--font-accent); font-size: 2.2rem; color: white; text-decoration: none; }
.menu-link:hover { color: var(--gold); }
.badge-gold { font-size: 12px; vertical-align: super; color: var(--gold); border: 1px solid var(--gold); padding: 2px 5px; border-radius: 4px; font-family: var(--font-main); }
.menu-footer { text-align: center; opacity: 0; transform: translateY(20px); transition: 0.5s 0.6s; }
.overlay-menu.open .menu-footer { opacity: 1; transform: translateY(0); }
.menu-phone { font-size: 28px; color: var(--gold); text-decoration: none; display: block; margin-bottom: 15px; font-weight: 700; }
.social-icons a { font-size: 35px; color: white; margin: 0 15px; }

/* =========================================
   4. HERO SEKCIJA
   ========================================= */
.hero-wrapper { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
#heroCarousel, .carousel-inner, .carousel-item { height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: -2; }

/* IMG tag kao background cover */
.hero-bg-img { 
    width: 100%; height: 100%; object-fit: cover; 
    animation: kenBurns 20s infinite alternate; 
}
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: linear-gradient(to bottom, rgba(5,11,20,0.5) 0%, rgba(5,11,20,0.9) 100%), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xNSkiLz48L3N2Zz4='); }

.slogan-container { font-size: 16px; font-weight: 700; letter-spacing: 2px; color: var(--gold); display: inline-block; border: 1px solid rgba(212, 175, 55, 0.3); padding: 10px 30px; background: rgba(0,0,0,0.4); backdrop-filter: blur(5px); border-radius: 50px; }
.static-text { color: white; font-weight: 800; }
.separator { margin: 0 10px; color: #555; }
.cursor { animation: blink 1s infinite; color: var(--gold); }
@keyframes blink { 50% { opacity: 0; } }

.main-title { font-weight: 900; font-size: 3.8rem; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.highlight-gold { color: var(--gold); font-family: var(--font-accent); font-style: italic; text-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto; line-height: 1.6; }

/* WOW Dugmad */
.wow-btn { position: relative; display: flex; align-items: center; gap: 15px; padding: 15px 35px; border-radius: 50px; text-decoration: none; overflow: hidden; transition: all 0.4s; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.primary-wow { background: linear-gradient(45deg, #FF6B00, #D4AF37, #FF6B00); background-size: 200% auto; animation: gradientMove 3s linear infinite, pulse-gold 2s infinite; border: 2px solid #D4AF37; color: white; }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } }
.secondary-wow { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.4); color: white; }
.secondary-wow:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-shine { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); transform: skewX(-25deg); animation: shine 3s infinite; }
@keyframes shine { 100% { left: 200%; } }
.icon-circle { width: 40px; height: 40px; background: white; color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.viber-circle { color: #7360f2; }
.btn-text small { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; display: block; font-weight: 600; }
.btn-text strong { font-size: 16px; font-weight: 800; display: block; }

.scroll-indicator { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); text-align: center; color: rgba(255,255,255,0.7); z-index: 10; }
.scroll-indicator span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; animation: fadeInUp 2s infinite; }
.mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.6); border-radius: 20px; margin: 0 auto; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 1.5s infinite; }
@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 18px; opacity: 0; } }
@keyframes fadeInUp { 0%, 100% { opacity: 0; transform: translateY(10px); } 50% { opacity: 1; transform: translateY(0); } }

/* =========================================
   5. SEKCIJA: ZAŠTO POBEDNIK (LIGHT)
   ========================================= */
.why-us-section { position: relative; background-color: var(--gray-light); overflow: hidden; color: #333; }
.section-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); border: 1px solid var(--gold); padding: 5px 15px; border-radius: 20px; margin-bottom: 15px; background: white; }
.section-title { font-weight: 800; font-size: 2.5rem; color: var(--bg-dark); }
.text-gold { color: var(--gold); font-family: var(--font-accent); font-style: italic; }
.signature-line { display: flex; align-items: center; gap: 15px; }
.gold-line { height: 2px; width: 50px; background: var(--gold); }
.signature-text { font-family: var(--font-accent); font-style: italic; color: #555; }
.features-box { background: rgba(255, 255, 255, 0.95); padding: 40px; border-radius: 15px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); border-bottom: 5px solid var(--gold); position: relative; z-index: 2; backdrop-filter: blur(5px); }
.feature-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-icon { min-width: 55px; height: 55px; background: white; color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-right: 20px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-item:hover .feature-icon { background: var(--gold); color: white; transform: scale(1.1) rotate(10deg); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
.feature-text h4 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.feature-text p { font-size: 14px; color: #666; margin: 0; line-height: 1.5; }

/* =========================================
   6. SEKCIJA: ODNOŠENJE NAMEŠTAJA (DARK)
   ========================================= */
.service-section { background-color: var(--bg-dark); color: white; overflow: hidden; padding-top: 80px; padding-bottom: 80px; }
.service-bg-num { position: absolute; top: -20px; right: 5%; font-size: 250px; font-weight: 900; color: rgba(255, 255, 255, 0.03); line-height: 1; z-index: 1; user-select: none; }
.service-label { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 5px; text-transform: uppercase; font-weight: 700; }
.service-title { font-family: var(--font-accent); font-size: 3rem; font-weight: 700; line-height: 1.2; }
.service-title span { font-family: var(--font-accent); }
.service-desc { color: #b0b0b0; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-desc strong { color: white; font-weight: 600; }
.service-list li { display: flex; align-items: center; margin-bottom: 15px; font-size: 16px; color: white; font-weight: 500; }
.service-list li i { color: var(--gold); font-size: 20px; margin-right: 15px; min-width: 20px; }

/* Dugme Odnošenje (Jaka Narandžasta) */
.btn-service-cta {
    display: inline-flex; align-items: center; gap: 15px;
    background: linear-gradient(45deg, #ff4d00, #ff9100, #ff4d00); background-size: 200% auto;
    color: white; border: none; padding: 18px 50px;
    font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none; border-radius: 50px;
    position: relative; overflow: hidden; transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(255, 77, 0, 0.4); animation: gradientMove 3s linear infinite;
}
.btn-service-cta:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 0 40px rgba(255, 77, 0, 0.7); color: white; }
.btn-service-cta::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shine 3s infinite;
}
.btn-service-cta i { font-size: 18px; transition: 0.3s; }
.btn-service-cta:hover i { transform: translateX(5px); }

/* Slike i Okviri (Fix za Bedž) */
.image-wrapper-premium { position: relative; padding: 20px; z-index: 2; overflow: visible !important; }
.gold-frame { position: absolute; top: 0; right: 0; width: 90%; height: 90%; border: 3px solid var(--gold); z-index: 1; opacity: 0.5; transition: 0.5s; }
.main-img { position: relative; width: 95%; height: 500px; z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.5); margin-top: 30px; margin-right: 30px; transition: 0.5s; overflow: hidden; border-radius: 15px; }
.image-wrapper-premium:hover .gold-frame { top: -10px; right: -10px; opacity: 1; }
.image-wrapper-premium:hover .main-img { transform: translate(-5px, -5px); }
.img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.floating-badge { position: absolute; bottom: 40px; left: -20px; background: white; color: var(--bg-dark); padding: 15px 25px; border-left: 5px solid var(--gold); z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 14px; text-transform: uppercase; animation: floatBadge 3s infinite ease-in-out; }
.floating-badge i { font-size: 24px; color: var(--gold); }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================
   7. SEKCIJA: SELIDBE (LIGHT PREMIUM)
   ========================================= */
.service-section-light { background-color: var(--gray-light); color: #333; overflow: hidden; padding-top: 100px; padding-bottom: 100px; }

/* FIX ZA BROJ 02 */
.service-bg-num-light { 
    position: absolute; 
    top: 50px; 
    right: 0; /* Prebačeno na desnu stranu */
    left: auto;
    font-size: 250px; font-weight: 900; 
    color: #e0e0e0; line-height: 1; z-index: 0; opacity: 0.4;
    user-select: none; 
}

.gold-vertical-line { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: rgba(212, 175, 55, 0.1); z-index: 1; }
.service-label-light { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--gold); background: rgba(212, 175, 55, 0.1); padding: 5px 10px; font-weight: 700; text-transform: uppercase; border-radius: 4px; }
.service-title-light { font-family: var(--font-accent); font-size: 3rem; font-weight: 800; color: #222; line-height: 1.2; }
.service-title-light span { font-family: var(--font-accent); }
.service-desc-light { color: #666; font-size: 15px; line-height: 1.8; margin-bottom: 20px; text-align: justify; }
.service-list-light li { display: flex; align-items: center; margin-bottom: 12px; font-size: 16px; color: #444; font-weight: 600; border-bottom: 1px solid #ddd; padding-bottom: 12px; }
.service-list-light li i { color: var(--gold); background: #222; width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; margin-right: 15px; }

/* Dugme Selidbe (Zlatno) */
.btn-service-cta-light {
    display: inline-flex; align-items: center; gap: 15px;
    background: linear-gradient(45deg, #FF6B00, #D4AF37, #FF6B00); background-size: 200% auto;
    color: white; padding: 18px 50px; font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; text-decoration: none; border-radius: 50px;
    position: relative; overflow: hidden; transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); animation: gradientMove 3s linear infinite;
}
.btn-service-cta-light:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.6); color: white; }
.btn-service-cta-light::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shine 3s infinite;
}
.btn-service-cta-light i { font-size: 18px; transition: 0.3s; }
.btn-service-cta-light:hover i { transform: rotate(15deg) scale(1.2); }

.composition-wrapper { position: relative; padding: 20px; z-index: 2; }
.deco-box { position: absolute; top: 40px; left: 0; width: 80%; height: 90%; background: #ffffff; border: 2px solid var(--gold); z-index: 1; }
.moving-img { position: relative; width: 100%; height: 550px; z-index: 2; box-shadow: 20px 20px 0px rgba(0,0,0,0.1); margin-left: 20px; transition: 0.5s; }
.composition-wrapper:hover .moving-img { transform: translate(-10px, -10px); box-shadow: 30px 30px 0px rgba(212, 175, 55, 0.2); }
.experience-badge { position: absolute; top: 60px; right: -20px; background: var(--gold); color: #000; width: 100px; height: 100px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 3; box-shadow: 0 10px 30px rgba(0,0,0,0.2); text-align: center; border: 4px solid white; }
.experience-badge .years { font-size: 28px; font-weight: 900; line-height: 1; }
.experience-badge .text { font-size: 10px; font-weight: 600; text-transform: uppercase; line-height: 1.2; }

/* =========================================
   8. SEKCIJA: RUŠENJE (DARK STRONG)
   ========================================= */
.demolition-dark { background-color: #111; color: white; padding-top: 80px; padding-bottom: 80px; border-top: 1px solid #333; }
.bg-overlay-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(#333 1px, transparent 1px); background-size: 20px 20px; opacity: 0.1; z-index: 1; }
.badge-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; padding: 5px 15px; border-radius: 20px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 15px; }
.check-list-grid { list-style: none; padding: 0; margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.check-list-grid li { font-size: 14px; color: #ccc; display: flex; align-items: center; gap: 10px; }
.check-list-grid li i { color: var(--gold); font-size: 16px; }
.demo-img-box { position: relative; border: 1px solid #333; padding: 10px; background: #222; }
.floating-box-dark { position: absolute; bottom: 20px; left: -20px; background: var(--gold); color: black; padding: 15px; font-weight: 700; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* =========================================
   9. SEKCIJA: KAKO FUNKCIONIŠE
   ========================================= */
.process-section { position: relative; overflow: hidden; }
.process-line { position: absolute; top: 40px; left: 15%; width: 70%; height: 2px; background: #e0e0e0; z-index: 0; }
.process-step { position: relative; z-index: 1; background: white; padding: 20px; }
.process-step h4 { color: var(--bg-dark); font-weight: 700; margin-top: 15px; margin-bottom: 10px; }
.process-step .text-muted { color: #666 !important; }
.step-circle { width: 60px; height: 60px; background: white; border: 2px solid var(--gold); color: var(--gold); font-size: 24px; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; box-shadow: 0 0 0 10px white; transition: 0.3s; }
.step-circle.active-step { background: var(--gold); color: white; box-shadow: 0 0 0 10px white, 0 0 20px rgba(212, 175, 55, 0.5); }
.process-step:hover .step-circle { transform: scale(1.1); background: var(--gold); color: white; }

/* =========================================
   10. FAQ SEKCIJA (MANUAL FIX)
   ========================================= */
.faq-section { background-color: var(--bg-dark); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-grid-bg { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; z-index: 0; pointer-events: none; 
}
.faq-section .container { position: relative; z-index: 10; }
.custom-accordion .accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 10px; }

/* FAQ TRIGGER BUTTON */
.faq-trigger {
    width: 100%; text-align: left; background: transparent; border: none; outline: none; padding: 20px 0;
    color: white; font-family: var(--font-main); font-weight: 600; font-size: 1.1rem; cursor: pointer !important;
    position: relative; z-index: 50; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s;
}
.faq-trigger:hover, .faq-trigger.active { color: var(--gold); }

/* FAQ ICON */
.faq-icon {
    width: 30px; height: 30px; border: 1px solid rgba(212, 175, 55, 0.5); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px;
    transition: transform 0.3s ease, background 0.3s;
}
.faq-trigger.active .faq-icon { background: var(--gold); color: #000; transform: rotate(45deg); }

/* FAQ CONTENT */
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; color: rgba(255,255,255,0.7); padding: 0; line-height: 1.6; }
.faq-content p { padding-bottom: 25px; margin: 0; }

/* =========================================
   11. KONTAKT SEKCIJA
   ========================================= */
.contact-section { min-height: 600px; background: #050b14; display: flex; flex-direction: column; justify-content: center; }
.map-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('images1/sec-4.jpg'); background-size: cover; background-position: center; opacity: 0.8; filter: grayscale(100%) contrast(1.1); z-index: 0; }
.dark-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(5,11,20,0.7) 0%, rgba(5,11,20,1) 90%); }
.contact-box { background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 50px 30px; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.contact-title { font-weight: 900; font-size: 2.5rem; color: white; }
.contact-title span { font-family: var(--font-accent); }
.info-item { display: inline-block; margin: 0 15px; color: white; font-size: 16px; font-weight: 500; }
.info-item i { margin-right: 8px; font-size: 18px; }

/* Mega Buttons */
.mega-buttons-wrapper { display: flex; flex-direction: column; gap: 20px; max-width: 450px; margin: 0 auto; }
.mega-btn { display: flex; align-items: center; padding: 15px 20px; background: #1a1a1a; border-radius: 12px; text-decoration: none; position: relative; overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.1); }
.icon-box { width: 50px; height: 50px; background: #333; color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-right: 20px; transition: 0.3s; }
.text-box { text-align: left; color: white; transition: 0.3s; }
.small-text { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 600; }
.big-text { display: block; font-size: 20px; font-weight: 800; line-height: 1; margin-top: 3px; }

.gold-pulse:hover { border-color: var(--gold); box-shadow: 0 0 25px rgba(212, 175, 55, 0.4); transform: translateY(-5px); }
.gold-pulse:hover .icon-box { background: var(--gold); color: black; }
.gold-pulse:hover .big-text { color: var(--gold); }
.shine-effect { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); transform: skewX(-20deg); animation: shineBtn 3s infinite; }
@keyframes shineBtn { 100% { left: 150%; } }
.viber-pulse:hover { border-color: #7360f2; box-shadow: 0 0 25px rgba(115, 96, 242, 0.4); transform: translateY(-5px); }
.viber-bg { background: #2c2c2c; color: #7360f2; }
.viber-pulse:hover .icon-box { background: #7360f2; color: white; }
.viber-pulse:hover .big-text { color: #7360f2; }
.whatsapp-pulse:hover { border-color: #25D366; box-shadow: 0 0 25px rgba(37, 211, 102, 0.4); transform: translateY(-5px); }
.wa-bg { background: #2c2c2c; color: #25D366; }
.whatsapp-pulse:hover .icon-box { background: #25D366; color: white; }
.whatsapp-pulse:hover .big-text { color: #25D366; }

/* =========================================
   12. FOOTER & FLOATING & RESPONSIVE
   ========================================= */
.floating-socials { position: fixed; z-index: 9999; display: flex; flex-direction: column; gap: 15px; opacity: 0; visibility: hidden; transition: all 0.4s ease; transform: translateX(20px); }
.floating-socials.visible { opacity: 1; visibility: visible; transform: translateX(0); }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 30px; text-decoration: none; box-shadow: 0 5px 20px rgba(0,0,0,0.25); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid white; }
.float-btn:hover { transform: scale(1.15); box-shadow: 0 8px 25px rgba(0,0,0,0.3); color: white; }
.float-wa { background: #25D366; } .float-viber { background: #7360f2; }

/* Desktop Position */
@media (min-width: 992px) { .floating-socials { right: 30px; bottom: 40px; } }

/* Mobile Bottom Bar */
.mobile-sticky-bar { position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; background: #111; display: flex; align-items: center; border-top: 2px solid var(--gold); z-index: 9999; }
.sticky-item { flex: 1; text-align: center; color: white; text-decoration: none; font-size: 10px; text-transform: uppercase; }
.sticky-item i { display: block; font-size: 22px; margin-bottom: 5px; }
.call i { color: var(--gold); } .viber i { color: #7360f2; } .whatsapp i { color: #25D366; }

/* Mobile Responsive Overrides */
@media (max-width: 991px) {
    .glass-nav { top: 46px; }
    .main-title { font-size: 2.2rem; margin-top: 15px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .wow-btn { width: 100%; justify-content: center; }
    .slogan-container { font-size: 13px; padding: 8px 15px; width: 95%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .section-title { font-size: 2rem; }
    .features-box { padding: 25px; }
    .scroll-indicator { bottom: 80px; } 
    .hero-desc { font-size: 1rem; }
    
    /* FIX: Broj 02 nije vise preko slike */
    .service-bg-num { font-size: 150px; top: 0; right: 0; }
    
    .service-title { font-size: 2.2rem; }
    .image-wrapper-premium { padding: 0; margin-top: 50px; }
    .gold-frame { display: none; }
    .main-img { width: 100%; height: 350px; margin: 0; }
    
    /* FIX: Bedž stoji lepo na mobilnom */
    .floating-badge { 
        left: -10px !important; 
        bottom: 20px !important; 
        width: auto !important; 
        justify-content: center; 
        z-index: 10 !important;
    }
    
    .service-section-light { padding-top: 60px; }
    .gold-vertical-line { display: none; }
    
    /* FIX: Broj 02 u sekciji Selidbe */
    .service-bg-num-light { 
        font-size: 100px !important; 
        top: 20px !important; 
        right: 10px !important; 
        left: auto !important;
        bottom: auto; 
        color: #e0e0e0; 
    }
    
    .composition-wrapper { padding: 0; margin-bottom: 50px; }
    .deco-box { display: none; }
    .moving-img { margin-left: 0; height: 300px; box-shadow: 10px 10px 0px rgba(0,0,0,0.1); }
    
    /* --- EXPERIENCE BADGE FIX --- */
    .experience-badge { 
        width: 85px; 
        height: 85px; 
        top: 10px; /* Važno: nije u minusu */
        right: 10px; 
        border: 3px solid white;
    }
    .experience-badge .years { font-size: 24px; margin-bottom: 0; }
    .experience-badge .text { font-size: 9px; line-height: 1.1; }
    /* ----------------------------- */

    .col-lg-6.ps-lg-5 { padding-left: 15px !important; }
    .mega-buttons-wrapper { width: 100%; }
    .contact-title { font-size: 2rem; }
    .info-item { display: block; margin-bottom: 10px; }
    .check-list-grid { grid-template-columns: 1fr; }
    .floating-box-dark { display: none; }
    
    /* Mobile Floating Buttons Position */
    .floating-socials { right: 15px; bottom: 85px; }
    
    /* Menu Overlap Fix */
    .overlay-menu .menu-content {
        justify-content: flex-start !important; 
        padding-top: 130px !important; 
        padding-bottom: 100px;
    }
    .overlay-menu .menu-item { margin: 10px 0 !important; }
}