
    :root {
      --bg-dark: #050814;
      --bg-section: #0d1220;
      --accent-yellow: #f6c443;
      --accent-red: #e63946;
      --text-main: #f9fafb;
      --text-muted: #9ca3af;
      --border-soft: #1f2937;
      --container-width: 1200px;
      --radius-lg: 18px;
      --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.45);
      --transition-fast: 0.2s ease-in-out;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-sans);
      background: radial-gradient(circle at top, #101827 0%, #020617 60%);
      color: var(--text-main);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(2, 6, 23, 0.96);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
      gap: 20px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-area img {
      height: 120px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text span:first-child {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--accent-yellow);
    }

    .logo-text span:last-child {
      font-weight: 700;
      font-size: 1.1rem;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      align-items: center;
      font-size: 0.95rem;
    }

    nav a {
      position: relative;
      padding-bottom: 4px;
      color: var(--text-muted);
      transition: color var(--transition-fast);
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
      transition: width var(--transition-fast);
    }

    nav a:hover {
      color: var(--text-main);
    }

    nav a:hover::after {
      width: 100%;
    }

    .header-cta {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-sm {
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: transparent;
      color: var(--text-main);
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-sm.primary {
      border: none;
      background: linear-gradient(135deg, var(--accent-yellow), var(--accent-red));
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.55);
    }

    .btn-sm:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
      border-color: var(--accent-yellow);
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 80px 0 70px;
      overflow: hidden;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .hero-tag span.dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent-yellow);
      box-shadow: 0 0 0 6px rgba(246, 196, 67, 0.28);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .hero h1 span.highlight {
      background: linear-gradient(135deg, var(--accent-yellow), var(--accent-red));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-lead {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 32rem;
      margin-bottom: 22px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }

    .hero-badge {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-muted);
    }

    .hero-badge span.icon {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent-yellow);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 18px;
    }

    .btn-lg {
      padding: 13px 26px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 500;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: transparent;
      color: var(--text-main);
      cursor: pointer;
      transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-lg.primary {
      border: none;
      background: linear-gradient(135deg, var(--accent-yellow), var(--accent-red));
      box-shadow: var(--shadow-soft);
      color: #111827;
    }

    .btn-lg.secondary {
      background: rgba(15, 23, 42, 0.9);
    }

    .btn-lg:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.7);
    }

    .hero-note {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .hero-note span {
      color: var(--accent-yellow);
      font-weight: 500;
    }

    .hero-visual {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: radial-gradient(circle at top, #1f2937 0%, #020617 70%);
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .hero-visual img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero-visual-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(246, 196, 67, 0.1), transparent 60%);
      pointer-events: none;
    }

    .hero-stats {
      position: absolute;
      bottom: 14px;
      left: 14px;
      right: 14px;
      display: flex;
      justify-content: space-between;
      gap: 10px;
      font-size: 0.8rem;
    }

    .hero-stat {
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.92);
      border: 1px solid rgba(55, 65, 81, 0.9);
      color: var(--text-muted);
      backdrop-filter: blur(12px);
    }

    .hero-stat strong {
      display: block;
      color: var(--accent-yellow);
      font-size: 0.9rem;
    }

    /* Sekcije */
    section {
      padding: 60px 0;
    }

    .section-dark {
      background: var(--bg-section);
      border-top: 1px solid var(--border-soft);
      border-bottom: 1px solid var(--border-soft);
    }

    .section-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 40px;
    }

    .section-header h2 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .section-header p {
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    /* Proizvodi */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .card {
      background: radial-gradient(circle at top, #111827 0%, #020617 65%);
      border-radius: var(--radius-lg);
      padding: 22px 20px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: var(--accent-yellow);
      box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
    }

    .card h3 {
      font-size: 1.15rem;
      margin-bottom: 8px;
    }

    .card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .card ul {
      padding-left: 18px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--accent-yellow);
      margin-bottom: 8px;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent-yellow);
    }

    /* Prednosti */
    .benefits {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .benefit {
      padding: 18px 16px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .benefit-title {
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    /* CTA sekcija */
    .cta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 26px 24px;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at left, rgba(246, 196, 67, 0.16), transparent 60%),
                  radial-gradient(circle at right, rgba(230, 57, 70, 0.18), transparent 60%),
                  #020617;
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: var(--shadow-soft);
    }

    .cta h2 {
      font-size: 1.4rem;
      margin-bottom: 4px;
    }

    .cta p {
      font-size: 0.93rem;
      color: var(--text-muted);
    }

    /* Kontakt */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 30px;
      align-items: flex-start;
    }

    .contact-box {
      padding: 20px 18px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.93rem;
      color: var(--text-muted);
    }

    .contact-box h3 {
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .contact-box p + p {
      margin-top: 4px;
    }

    form label {
      display: block;
      font-size: 0.85rem;
      margin-bottom: 4px;
      color: var(--text-muted);
    }

    form input,
    form textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(55, 65, 81, 0.9);
      background: #020617;
      padding: 9px 10px;
      color: var(--text-main);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    form textarea {
      min-height: 110px;
      resize: vertical;
    }

    form input::placeholder,
    form textarea::placeholder {
      color: #6b7280;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border-soft);
      background: #020617;
      padding: 18px 0 24px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      gap: 14px;
    }

    .footer-links a {
      color: var(--text-muted);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-visual {
        order: -1;
      }
      .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      nav ul {
        display: none; /* ovdje kasnije mo弔e分 dodati mobilni meni */
      }
    }

    @media (max-width: 640px) {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .benefits {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        padding-top: 50px;
      }
      .cta {
        padding: 18px 16px;
      }
    }
    /* LOKACIJA SEKCIJA */
    #lokacija {
      background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
    }

    .location-container {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
      gap: 30px;
      align-items: start;
    }

    .location-info {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(55, 65, 81, 0.9);
    }

    .location-info h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--accent-yellow);
    }

    .location-details {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .location-detail {
      display: flex;
      gap: 15px;
      align-items: flex-start;
    }

    .location-icon {
      font-size: 1.5rem;
      min-width: 40px;
      text-align: center;
    }

    .location-detail strong {
      display: block;
      margin-bottom: 5px;
      color: var(--text-main);
    }

    .location-detail p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .location-map {
      position: relative;
    }

    .map-wrapper {
      width: 100%;
      height: 400px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.3);
      position: relative;
    }

    .map-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
      z-index: 2;
    }

    .map-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      border: 1px solid rgba(55, 65, 81, 0.9);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* VIDEO SEKCIJA */
    .video-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(148, 163, 184, 0.3);
      background: #000;
      margin-bottom: 30px;
    }

    .video-wrapper iframe,
    .video-wrapper video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-info {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .video-info-card {
      padding: 20px;
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(55, 65, 81, 0.9);
      text-align: center;
      transition: transform var(--transition-fast), border-color var(--transition-fast);
    }

    .video-info-card:hover {
      transform: translateY(-3px);
      border-color: var(--accent-yellow);
    }

    .video-info-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
      color: var(--accent-yellow);
    }

    .video-info-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* RESPONSIVE ZA NOVE SEKCIJE */
    @media (max-width: 992px) {
      .location-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
      }
      
      .video-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .location-detail {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
      
      .location-icon {
        margin: 0 auto;
      }
      
      .video-info {
        grid-template-columns: minmax(0, 1fr);
      }
      
      .map-wrapper {
        height: 350px;
      }
    }

    /* AŽURIRAJ NAVIGACIJU ZA DODATNE LINKOVE */
    /* Dodajte u postojeću navigaciju iznad Kontakt linka */
    /* 
    <li><a href="#lokacija">Lokacija</a></li>
    <li><a href="#video">Video</a></li>
    */