    :root {
      --primary: #0d6efd;
      --dark: #0f172a;
      --light: #f8fbff;
      --accent: #e63946;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: #ffffff;
    }

    .navbar {
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,0.92);
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .brand-logo {
      width: 82px;
      height: 82px;
      object-fit: contain;
      border-radius: 50%;
      background: #fff;
      padding: 4px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .Naslov{
      height: 50px;
    }

    .cjenik {
      text-align: center;
      align-items: center;
      font-family: 'Poppins', sans-serif;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .cjenik:hover{
      transform: translateY(-6px);
    }

    .cjenik2 {
      background-color: #0d6efd;
      color: rgb(255, 255, 255);
      font-style: normal;
      text-decoration:none;
      border-radius: 100px;
      padding: 10px;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(135deg, rgba(13,110,253,0.08), rgba(13,110,253,0.02)),
        radial-gradient(circle at top right, rgba(13,110,253,0.12), transparent 35%),
        #ffffff;
      position: relative;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(13,110,253,0.08);
      filter: blur(10px);
    }

    .hero::before {
      width: 280px;
      height: 280px;
      top: -60px;
      right: -80px;
    }

    .hero::after {
      width: 200px;
      height: 200px;
      bottom: 40px;
      left: -60px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(13,110,253,0.1);
      color: var(--primary);
      border: 1px solid rgba(13,110,253,0.12);
      padding: 10px 16px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4.6rem);
      font-weight: 800;
      line-height: 1.05;
      margin-top: 1rem;
      margin-bottom: 1rem;
    }

    .hero p.lead {
      font-size: 1.1rem;
      color: #475569;
      max-width: 620px;
    }

    .cta-box {
      background: #fff;
      border-radius: 24px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(15, 23, 42, 0.05);
    }

    .flyer-card {
      background: linear-gradient(180deg, #f8fbff, #eef6ff);
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 25px 70px rgba(13,110,253,0.12);
      border: 1px solid rgba(13,110,253,0.1);
    }

    .flyer-card img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .service-card,
    .info-card,
    .contact-card {
      height: 100%;
      border: 0;
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card:hover,
    .info-card:hover,
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
    }

    .icon-circle {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      background: rgba(13,110,253,0.12);
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .soft-section {
      background: linear-gradient(180deg, #ffffff, #f7fbff);
    }

    .phone-box {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      padding: 14px 24px;
      border-radius: 18px;
      font-weight: 800;
      font-size: 1.2rem;
      box-shadow: 0 15px 30px rgba(230,57,70,0.25);
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 0;
      border-bottom: 1px solid #e9eef5;
      font-weight: 500;
    }

    .hours-list li:last-child {
      border-bottom: 0;
    }

    .footer {
      background: #0f172a;
      color: rgba(255,255,255,0.85);
    }

    .btn-rounded {
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 600;
    }

    .logo-showcase {
      width: 140px;
      height: 140px;
      object-fit: contain;
      background: #fff;
      border-radius: 50%;
      padding: 10px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }