        /* ========== ROOT ========== */
        :root {
            --theme-color: #5a8b6f;
            --theme-color-lighter: #7aab8f;
            --theme-color-darker: #3d6b52;
            --alt-color: #d4a843;
            --alt-darker: #b88c2e;
            --dark-color: #2e3a30;
            --beige: #f5f0e8;
            --beige-dark: #ede6d8;
            --beige-darker: #ddd5c4;
            --light-color: #d0d0d0;
            --white-color: #fff;
            --red: #c9103d;
            --checkout-heading: #23527c;
            --font-main: 'Nunito', sans-serif;
            --radius-xl: 28px;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 10px;
            --shadow-card: 0 4px 28px rgba(0,0,0,0.07);
            --shadow-green: 0 8px 32px rgba(90,139,111,0.18);
        }

        /* ========== BASE ========== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--font-main); color: var(--dark-color); background: var(--white-color); overflow-x: hidden; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }

        /* ========== TYPOGRAPHY ========== */
        .sectionLabel { font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--theme-color); margin-bottom: 10px; display: block; }
        .sectionTitle { font-size: 42px; font-weight: 800; line-height: 1.12; color: var(--dark-color); }
        .sectionSubtitle { font-size: 17px; font-weight: 400; color: #5a6a5e; line-height: 1.75; }

        /* ========== BUTTONS ========== */
        .btnPrimary { background: var(--theme-color); color: var(--white-color); font-family: var(--font-main); font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s, box-shadow 0.2s; display: inline-block; line-height: 1.4; }
        .btnPrimary:hover { background: var(--theme-color-darker); color: var(--white-color); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,139,111,0.35); }
        .btnOutline { background: transparent; color: var(--theme-color); border: 2px solid var(--theme-color); font-family: var(--font-main); font-weight: 700; font-size: 16px; padding: 12px 30px; border-radius: 50px; cursor: pointer; transition: all 0.25s; display: inline-block; line-height: 1.4; }
        .btnOutline:hover { background: var(--theme-color); color: var(--white-color); transform: translateY(-2px); }
        .btnAlt { background: var(--alt-color); color: var(--white-color); font-family: var(--font-main); font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: all 0.25s; display: inline-block; line-height: 1.4; }
        .btnAlt:hover { background: var(--alt-darker); color: var(--white-color); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.35); }
        .btnWhite { background: var(--white-color); color: var(--theme-color); font-family: var(--font-main); font-weight: 700; font-size: 16px; padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer; transition: all 0.25s; display: inline-block; line-height: 1.4; }
        .btnWhite:hover { background: var(--beige); color: var(--theme-color-darker); transform: translateY(-2px); }
        .btnWhiteOutline { background: transparent; color: var(--white-color); border: 2px solid rgba(255,255,255,0.7); font-family: var(--font-main); font-weight: 700; font-size: 16px; padding: 12px 30px; border-radius: 50px; cursor: pointer; transition: all 0.25s; display: inline-block; line-height: 1.4; }
        .btnWhiteOutline:hover { background: rgba(255,255,255,0.15); border-color: var(--white-color); }

        /* ========== ANIMATIONS ========== */
        @keyframes biSpin { to { transform: rotate(360deg); } }
        @keyframes fcFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
        @keyframes birdFly { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(16px); } }
        @keyframes cloudDrift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(12px); } }
        .biSpin { display: inline-block; animation: biSpin 0.8s linear infinite; }
        .fadeUp { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .fadeUp.visible { opacity: 1; transform: translateY(0); }
        .fadeUp.d1 { transition-delay: 0.10s; }
        .fadeUp.d2 { transition-delay: 0.20s; }
        .fadeUp.d3 { transition-delay: 0.30s; }
        .fadeUp.d4 { transition-delay: 0.40s; }
        .fadeUp.d5 { transition-delay: 0.50s; }
        .fadeUp.d6 { transition-delay: 0.60s; }

        /* ========== DECOR ========== */
        .cloudDeco { position: absolute; pointer-events: none; }
        .cloudDeco.c1 { animation: cloudDrift 8s ease-in-out infinite; }
        .cloudDeco.c2 { animation: cloudDrift 11s ease-in-out infinite 2s; }
        .birdDeco { position: absolute; pointer-events: none; animation: birdFly 4s ease-in-out infinite; }
        .birdDeco.b2 { animation-delay: 1.4s; }
        .birdDeco.b3 { animation-delay: 2.8s; }

        /* ========== HEADER ========== */
        #mainHeader { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all 0.35s; }
        .headerTop { background: var(--theme-color); padding: 7px 0; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); }
        .headerTop a { color: rgba(255,255,255,0.9); transition: opacity 0.2s; }
        .headerTop a:hover { opacity: 0.75; }
        .headerTopInner { display: flex; align-items: center; justify-content: space-between; }
        .headerTopLeft, .headerTopRight { display: flex; align-items: center; gap: 22px; }
        .headerMain { background: var(--white-color); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
        .headerMainInner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
        .headerLogo { height: 54px; width: auto; display: block; }
        .headerNav { display: flex; align-items: center; gap: 2px; }
        .headerNav a { font-weight: 700; color: var(--dark-color); padding: 7px 12px; border-radius: 50px; transition: all 0.2s; white-space: nowrap; }
        .headerNav a:hover, .headerNav a.active { color: var(--theme-color); background: rgba(90,139,111,0.1); }
        .headerCta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
        .headerPhone { font-size: 14px; font-weight: 700; color: var(--theme-color); white-space: nowrap; }
        .headerScrolled .headerTop { display: none; }
        .headerScrolled .headerMain { padding: 7px 0; }
        .navToggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
        .navToggle span { display: block; width: 26px; height: 3px; background: var(--dark-color); border-radius: 2px; transition: all 0.3s; }
        .mobileMenu { display: none; background: var(--white-color); border-top: 1px solid #f0ede6; padding: 12px 0 20px; }
        .mobileMenu a { display: block; font-size: 16px; font-weight: 600; color: var(--dark-color); padding: 12px 20px; border-radius: var(--radius-sm); transition: all 0.2s; }
        .mobileMenu a:hover { color: var(--theme-color); background: rgba(90,139,111,0.08); }
        .mobileMenuCta { padding: 8px 20px 0; }
        .mobileMenuCta .btnAlt { display: block; text-align: center; }

        /* ========== HERO ========== */
        .heroSection { padding-top: 158px; padding-bottom: 0; background: var(--beige); position: relative; overflow: hidden; min-height: 640px; }
        .heroContent { position: relative; z-index: 2; padding: 40px 0 80px; }
        .heroBadge { display: inline-flex; align-items: center; gap: 8px; background: rgba(90,139,111,0.13); color: var(--theme-color-darker); font-size: 13px; font-weight: 700; padding: 7px 18px; border-radius: 50px; margin-bottom: 22px; border: 1px solid rgba(90,139,111,0.2); }
        .heroTitle { font-size: 56px; font-weight: 800; line-height: 1.08; margin-bottom: 10px; color: var(--dark-color); }
        .heroTagline { font-size: 22px; font-weight: 700; color: var(--theme-color); margin-bottom: 20px; line-height: 1.35; }
        .heroDesc { font-size: 17px; font-weight: 400; color: #5a6a5e; line-height: 1.75; max-width: 490px; margin-bottom: 34px; }
        .heroCtas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
        .heroStats { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
        .heroStat { display: flex; flex-direction: column; }
        .heroStatNum { font-size: 30px; font-weight: 800; color: var(--theme-color); line-height: 1; }
        .heroStatLabel { font-size: 12px; font-weight: 500; color: #8a9e8f; margin-top: 3px; }
        .heroStatDiv { width: 1px; height: 38px; background: var(--beige-darker); }
        .heroVisual { position: relative; display: flex; justify-content: center; align-items: center; padding: 30px 0 0; }
        .heroLogoMain { width: 100%; max-width: 600px; margin: 0 auto; filter: drop-shadow(0 24px 48px rgba(90,139,111,0.22)); animation: fcFloat 5s ease-in-out infinite; }
        .heroFloatCard { position: absolute; background: var(--white-color); border-radius: var(--radius-lg); box-shadow: 0 8px 32px rgba(0,0,0,0.10); padding: 12px 16px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(90,139,111,0.1); }
        .heroFloatCard.fc1 { top: 50px; left: -10px; animation: fcFloat 3.5s ease-in-out infinite; }
        .heroFloatCard.fc2 { bottom: 80px; right: -10px; animation: fcFloat 3.5s ease-in-out infinite 1.8s; }
        .fcIcon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
        .fcIcon.green { background: rgba(90,139,111,0.12); color: var(--theme-color); }
        .fcIcon.gold { background: rgba(212,168,67,0.13); color: var(--alt-color); }
        .fcTitle { font-size: 12px; font-weight: 700; color: var(--dark-color); line-height: 1.3; }
        .fcSub { font-size: 11px; color: #9aaa9e; }
        .waveDiv { line-height: 0; overflow: hidden; }
        .waveDiv svg { display: block; }

        /* ========== ZASTO ========== */
        .zastoSection { padding: 90px 0; background: var(--white-color); }
        .zastoSteps {  }
        .zastoStep { position: relative; text-align: center; padding: 40px 20px 32px; border-radius: var(--radius-xl); background: var(--beige); border: 2px solid var(--beige-dark); transition: all 0.3s; }
        .zastoStep:hover { border-color: rgba(90,139,111,0.3); background: #f0f8f3; transform: translateY(-6px); box-shadow: var(--shadow-green); }
        .zastoStepNum { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--theme-color); color: var(--white-color); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
        .zastoStepIcon { font-size: 36px; margin-bottom: 14px; display: block; }
        .zastoStepTitle { font-size: 15px; font-weight: 800; color: var(--dark-color); margin-bottom: 8px; }
        .zastoStepDesc { font-size: 13px; color: #6a7a6e; line-height: 1.65; }
        .zastvoBullets { background: var(--beige); border-radius: var(--radius-xl); padding: 36px 40px; margin-top: 46px; }
        .zastvoBulletRow { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--beige-dark); }
        .zastvoBulletRow:last-child { border-bottom: none; }
        .zastvoBulletIcon { width: 30px; height: 30px; border-radius: 50%; background: rgba(90,139,111,0.12); color: var(--theme-color); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
        .zastvoBulletTxt { font-size: 15px; font-weight: 500; color: #4a5e4f; line-height: 1.6; }

        /* ========== NAJTRAZENIJE ========== */
        .najtrazenijeSection { padding: 90px 0; background: var(--beige); position: relative; overflow: hidden; }
        .najtrazenijeGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 50px; margin-bottom: 40px; }
        .najtrazenijeCard { background: var(--white-color); border-radius: var(--radius-xl); padding: 30px 22px; text-align: center; border: 2px solid transparent; transition: all 0.3s; box-shadow: var(--shadow-card); }
        .najtrazenijeCard:hover { border-color: rgba(90,139,111,0.25); transform: translateY(-6px); box-shadow: var(--shadow-green); }
        .najtrazenijeIcon { width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: transform 0.3s; }
        .najtrazenijeCard:hover .najtrazenijeIcon { transform: scale(1.1) rotate(-5deg); }
        .najtrazenijeIcon.green { background: rgba(90,139,111,0.12); color: var(--theme-color); }
        .najtrazenijeIcon.gold { background: rgba(212,168,67,0.12); color: var(--alt-color); }
        .najtrazenijeCardTitle { font-size: 16px; font-weight: 800; color: var(--dark-color); margin-bottom: 10px; line-height: 1.3; }
        .najtrazenijeCardDesc { font-size: 13px; color: #6a7a6e; line-height: 1.65; }

        /* ========== USLUGE ========== */
        .uslugeSection { padding: 90px 0; background: var(--white-color); }
        .uslugeGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .uslugeCard { background: var(--white-color); border-radius: var(--radius-xl); padding: 32px 24px; box-shadow: var(--shadow-card); transition: all 0.3s; border: 2px solid var(--beige); }
        .uslugeCard:hover { transform: translateY(-7px); box-shadow: var(--shadow-green); border-color: rgba(90,139,111,0.25); }
        .uslugeIcon { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 18px; transition: transform 0.3s; }
        .uslugeCard:hover .uslugeIcon { transform: scale(1.1) rotate(-6deg); }
        .uslugeIcon.green { background: rgba(90,139,111,0.12); color: var(--theme-color); }
        .uslugeIcon.gold { background: rgba(212,168,67,0.12); color: var(--alt-color); }
        .uslugeIcon.beige { background: var(--beige); color: var(--theme-color-darker); }
        .uslugeCardTitle { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--dark-color); }
        .uslugeCardDesc { font-size: 14px; color: #6a7a6e; line-height: 1.7; margin-bottom: 18px; }
        .uslugeCardLink { font-size: 13px; font-weight: 700; color: var(--theme-color); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
        .uslugeCardLink:hover { gap: 11px; color: var(--theme-color-darker); }

        /* ========== O NAMA ========== */
        .oNamaSection { padding: 90px 0; background: var(--beige); position: relative; overflow: hidden; }
        .oNamaContent { padding-left: 48px; }
        .oNamaList { margin-top: 24px; display: flex; flex-direction: column; gap: 15px; }
        .oNamaItem { display: flex; align-items: flex-start; gap: 14px; }
        .oNamaCheck { width: 30px; height: 30px; background: rgba(90,139,111,0.13); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--theme-color); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
        .oNamaItemTxt { font-size: 15px; font-weight: 500; color: #4a5e4f; line-height: 1.6; }
        .oNamaImgBlock { position: relative; }

        .oNamaImgPlaceholder {
    width: 100%;
    border-radius: var(--radius-xl);
    background-image:
        linear-gradient(
            135deg,
            rgba(90, 139, 111, 0.1),
            rgba(212, 168, 67, 0.08)
        ),
        url("https://drgaga.rs/fajlovi/product/pedijatrijski-pregled-van-radnog-vremena-posle-20h-464.jpg?size=lg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: var(--theme-color);
    border: 2px dashed rgba(90, 139, 111, 0.2);
}
        
        .oNamaImgPlaceholder i { font-size: 52px; opacity: 0.35; }
        .oNamaImgPlaceholder span { font-size: 14px; font-weight: 600; opacity: 0.45; }
        .oNamaBadge { position: absolute; bottom: -18px; right: -14px; background: var(--alt-color); color: var(--white-color); border-radius: var(--radius-lg); padding: 18px 22px; box-shadow: 0 8px 28px rgba(212,168,67,0.38); text-align: center; }
        .oNamaBadgeNum { font-size: 34px; font-weight: 800; line-height: 1; }
        .oNamaBadgeTxt { font-size: 12px; font-weight: 600; opacity: 0.9; }

        /* ========== TIM ========== */
        .timSection { padding: 90px 0; background: var(--white-color); }
        .timGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 50px; }
        .timCard { text-align: center; }

        
        .timImgWrap {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    margin: 0 auto 16px;

    /* gradient overlay + slika */
    background-image:
        linear-gradient(135deg, rgba(90, 139, 111, 0.1), rgba(212, 168, 67, 0.08)),
        url("https://drgaga.rs/fajlovi/product/kucna-poseta-pedijatra-358.jpg?size=md");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 4px solid var(--beige-dark);
    transition: border-color 0.3s;
    overflow: hidden; 
}
        
        .timCard:hover .timImgWrap { border-color: var(--theme-color-lighter); }
        .timImgPlaceholder { font-size: 50px; color: var(--theme-color); opacity: 0.3; }
        .timName { font-size: 15px; font-weight: 800; color: var(--dark-color); margin-bottom: 5px; line-height: 1.3; }
        .timRole { font-size: 13px; color: var(--theme-color); font-weight: 600; line-height: 1.5; }

        /* ========== TESTIMONIALS ========== */
        .testimonialsSection { padding: 90px 0; background: var(--beige); position: relative; overflow: hidden; }
        .swiper.testimSwiper { margin-top: 50px; padding-bottom: 54px; }
        .testimCard { background: var(--white-color); border-radius: var(--radius-xl); padding: 30px 26px; box-shadow: var(--shadow-card); height: auto; }
        .testimStars { color: var(--alt-color); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
        .testimText { font-size: 15px; color: #4a5e4f; line-height: 1.78; margin-bottom: 22px; font-style: italic; }
        .testimText::before { content: '\201C'; font-size: 46px; color: var(--theme-color); line-height: 0; vertical-align: -16px; margin-right: 3px; font-style: normal; }
        .testimAuthor { display: flex; align-items: center; gap: 13px; }
        .testimAvatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--theme-color), var(--theme-color-lighter)); display: flex; align-items: center; justify-content: center; color: var(--white-color); font-size: 17px; font-weight: 800; flex-shrink: 0; }
        .testimName { font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--dark-color); }
        .testimRole { font-size: 12px; color: #9aaa9e; }
        .swiper-pagination-bullet { background: var(--theme-color); opacity: 0.3; }
        .swiper-pagination-bullet-active { opacity: 1; }

        /* ========== BLOG ========== */
        .blogSection { padding: 90px 0; background: var(--white-color); }
        .blogGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
        .blogCard { border-radius: var(--radius-xl); overflow: hidden; border: 2px solid var(--beige); transition: all 0.3s; background: var(--white-color); }
        .blogCard:hover { border-color: rgba(90,139,111,0.25); transform: translateY(-6px); box-shadow: var(--shadow-green); }

.blogCardImg {
    width: 100%;
    height: 180px;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;  /* važno da se slika “iseče” u okvir */
}

.blogCardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* popuni okvir, kropuje višak */
    object-position: center;
    display: block;
}
        
        .blogCardBody { padding: 24px 22px; }
        .blogCardTag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--theme-color); margin-bottom: 10px; display: block; }
        .blogCardTitle { font-size: 17px; font-weight: 800; color: var(--dark-color); line-height: 1.35; margin-bottom: 12px; }
        .blogCardDesc { font-size: 14px; color: #6a7a6e; line-height: 1.7; margin-bottom: 18px; }
        .blogCardLink { font-size: 13px; font-weight: 700; color: var(--theme-color); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
        .blogCardLink:hover { gap: 11px; color: var(--theme-color-darker); }

        /* ========== CTA ========== */
        .ctaSection { padding: 90px 0; background: var(--theme-color); position: relative; overflow: hidden; }
        .ctaBlobA, .ctaBlobB { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; }
        .ctaBlobA { width: 500px; height: 500px; top: -180px; left: -80px; }
        .ctaBlobB { width: 380px; height: 380px; bottom: -140px; right: -60px; }
        .ctaInner { position: relative; z-index: 2; text-align: center; }
        .ctaTitle { font-size: 44px; font-weight: 800; color: var(--white-color); margin-bottom: 14px; line-height: 1.1; }
        .ctaDesc { font-size: 19px; color: rgba(255,255,255,0.85); margin-bottom: 38px; }
        .ctaBtns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

        /* ========== KONTAKT ========== */
        .kontaktSection { padding: 90px 0; background: var(--beige); }
        .kontaktInfoCard { background: var(--white-color); border-radius: var(--radius-xl); padding: 40px 34px; height: 100%; box-shadow: var(--shadow-card); }
        .kontaktMapCard { border-radius: var(--radius-xl); overflow: hidden; margin-top: 22px; box-shadow: var(--shadow-card); }
        .kontaktMapCard iframe { display: block; width: 100%; height: 210px; border: none; }
        .kontaktItem { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 22px; }
        .kontaktItemIcon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
        .kontaktItemIcon.green { background: rgba(90,139,111,0.12); color: var(--theme-color); }
        .kontaktItemIcon.gold { background: rgba(212,168,67,0.12); color: var(--alt-color); }
        .kontaktItemLabel { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #aaa; line-height: 1; margin-bottom: 4px; }
        .kontaktItemVal { font-size: 15px; font-weight: 600; color: var(--dark-color); }
        .kontaktItemVal a { color: inherit; transition: color 0.2s; }
        .kontaktItemVal a:hover { color: var(--theme-color); }
        .workBox { background: var(--beige); border-radius: var(--radius-md); padding: 20px 22px; margin-top: 22px; }
        .workBoxTitle { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: var(--dark-color); margin-bottom: 14px; }
        .workRow { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--beige-dark); font-size: 14px; }
        .workRow:last-child { border-bottom: none; }
        .workDay { font-weight: 600; color: #5a6a5e; }
        .workTime { font-weight: 700; color: var(--theme-color); }
        .workTime.closed { color: var(--red); }
        .kontaktCallBox { background: var(--theme-color); border-radius: var(--radius-xl); padding: 36px; text-align: center; }
        .kontaktCallTitle { font-size: 22px; font-weight: 800; color: var(--white-color); margin-bottom: 8px; }
        .kontaktCallSub { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 22px; line-height: 1.5; }
        .kontaktCallBtn { display: block; background: var(--white-color); color: var(--theme-color); font-family: var(--font-main); font-weight: 800; font-size: 20px; padding: 16px 28px; border-radius: 50px; transition: all 0.25s; }
        .kontaktCallBtn:hover { background: var(--beige); transform: translateY(-2px); }

        /* ========== FOOTER ========== */
        #mainFooter { background: var(--dark-color); color: rgba(255,255,255,0.6); padding: 68px 0 0; }
        .footerLogo { height: 52px; width: auto;  opacity: 0.8; margin-bottom: 14px; }
        .footerDesc { font-size: 14px; line-height: 1.78; margin-bottom: 22px; }
        .footerSocials { display: flex; gap: 10px; }
        .footerSocialBtn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.09); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px; transition: all 0.25s; }
        .footerSocialBtn:hover { background: var(--theme-color); color: var(--white-color); }
        .footerHeading { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--white-color); margin-bottom: 18px; }
        .footerLinks { display: flex; flex-direction: column; gap: 10px; }
        .footerLinks a, .footerLinks li { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
        .footerLinks a:hover { color: var(--theme-color-lighter); }
        .footerBottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
        .footerBottomRight a { color: rgba(255,255,255,0.4); margin-left: 20px; transition: color 0.2s; }
        .footerBottomRight a:hover { color: var(--white-color); }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1366px) {
            .heroTitle { font-size: 46px; }
        }
        @media (max-width: 1199px) {
            .heroTitle { font-size: 38px; }
            .sectionTitle { font-size: 34px; }
            .uslugeGrid { grid-template-columns: repeat(2, 1fr); }
            .zastoSteps { grid-template-columns: repeat(2, 1fr); }
            .najtrazenijeGrid { grid-template-columns: repeat(2, 1fr); }
            .timGrid { grid-template-columns: repeat(2, 1fr); }
            .oNamaContent { padding-left: 30px; }
            .ctaTitle { font-size: 36px; }
            .blogGrid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 991px) {
            .heroTitle { font-size: 32px; }
            .heroTagline { font-size: 19px; }
            .sectionTitle { font-size: 28px; }
            .headerNav, .headerCta .btnAlt { display: none; }
            .navToggle { display: flex; }
            .oNamaContent { padding-left: 0; padding-top: 52px; }
            .oNamaBadge { right: 0; }
            .zastvoBullets { padding: 26px 22px; }
        }
        @media (max-width: 767px) {
            .heroSection { padding: 110px 15px 15px 15px; }
            .heroTitle { font-size: 26px; }
            .heroTagline { font-size: 17px; }
            .heroContent { padding-bottom: 36px; }
            .heroVisual { margin-top: 20px; }
            .heroFloatCard { display: none; }
            .heroStats { gap: 14px; }
            .uslugeGrid, .najtrazenijeGrid, .blogGrid { grid-template-columns: 1fr; }
            .timGrid { grid-template-columns: repeat(2, 1fr); }
            .kontaktInfoCard { padding: 26px 18px; }
            .footerBottom { flex-direction: column; gap: 10px; text-align: center; }
            .footerBottomRight a { margin-left: 12px; }
        }
        @media (max-width: 575px) {
            .heroTitle { font-size: 23px; }
            .sectionTitle { font-size: 23px; }
            .zastoSteps { grid-template-columns: 1fr; }
            .heroCtas { flex-direction: column; align-items: flex-start; }
            .ctaTitle { font-size: 26px; }
            .ctaDesc { font-size: 16px; }
            .ctaBtns { flex-direction: column; }
        }
        @media (min-width: 1920px) {
            .heroTitle { font-size: 66px; }
            .sectionTitle { font-size: 50px; }
            .sectionSubtitle { font-size: 20px; }
        }
        @media (min-width: 2560px) {
            .container { max-width: 1800px; }
            .heroTitle { font-size: 80px; }
            .sectionTitle { font-size: 60px; }
        }







.cenovnik  ul {list-style-type: none; padding: 0;}
.cenovnik  ul li {line-height: 2em; font-size: 20px; position: relative; display: flex; justify-content: space-between;}
.cenovnik  ul li:before {position: absolute;content: "";bottom: 20px;left: 0;height: 2px;width: 100%;border-top: 1px dashed black;opacity: 0.4;-webkit-transition: all 0.3s;transition: all 0.3s;}
.cenovnik  ul li a {padding: 0 10px 10px 0;}
.cenovnik  ul li span {float: right; color: #e95449; padding: 0 0 10px 10px;}
.cenovnik  ul li a, .usluge .cenovnik  ul li span {background: #fff; position: relative; z-index: 9;}

@media only screen and (max-width: 767px) {
    .usluge .cenovnik  ul li {border-bottom: 1px solid #ddd; display: flex; align-items: center;}
    .usluge .cenovnik  ul li:before {display: none;}
}










