
    :root {
      --gold: #bfa36a;
      --dark: #2c3437;
      --dark-2: #1f2527;
      --light: #f9f8f4;
      --white: #ffffff;
      --muted: #6c757d;
      --shadow: 0 12px 30px rgba(0,0,0,0.08);
      --radius: 16px;
      --transition: 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
    }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    /* TOP BAR */
    .top-bar {
      background: var(--dark);
      color: var(--gold);
      padding: 10px 0;
      font-size: 14px;
    }

    .top-bar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .top-bar a {
      color: var(--gold);
      font-weight: 700;
    }

    /* NAV */
    nav {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 14px rgba(0,0,0,0.04);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      gap: 20px;
    }

    .logo-box {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }

    .logo-box img {
      height: 56px;
      width: auto;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      color: var(--dark);
      font-weight: 600;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }

    .nav-links a:hover::after,
    .nav-links a:hover {
      width: 100%;
      color: var(--gold);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 30px;
      color: var(--dark);
      cursor: pointer;
    }

    /* BUTTONS */
    
.viber-float {
  position: fixed;
  right: 18px;
  bottom: 90px;

  width: 62px !important;
  height: 62px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: #7360F2;
  color: white;
  border-radius: 50% !important;

  font-size: 26px;
  text-decoration: none;

  box-shadow: 0 12px 28px rgba(115,96,242,0.35);
  z-index: 999;

  /* KLJUČNO da ne nasledi stil dugmeta */
  padding: 0 !important;
}

.viber-float:hover {
  transform: scale(1.08);
}
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(191,163,106,0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .btn-secondary {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
    }

    .btn-secondary:hover {
      background: var(--gold);
      color: var(--white);
    }

    .btn-whatsapp {
      background: #25D366;
      color: white;
      box-shadow: 0 10px 24px rgba(37,211,102,0.25);
    }

    .btn-whatsapp:hover {
      transform: translateY(-2px);
    }

    /* HERO */
    .hero {
      padding: 90px 0 70px;
      background:
        linear-gradient(135deg, rgba(249,248,244,0.92), rgba(244,241,233,0.95)),
        url('https://images.unsplash.com/photo-1517849845537-4d257902454a?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      position: relative;
    }

    .hero-wrapper {
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .hero-content {
      flex: 1 1 520px;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(191,163,106,0.12);
      color: var(--gold);
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .hero-content h1 {
      font-size: clamp(2.3rem, 5vw, 4rem);
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--dark);
    }

    .hero-content p {
      font-size: 18px;
      color: #4d575a;
      max-width: 650px;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-card {
      flex: 1 1 380px;
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(8px);
      padding: 28px;
      border-radius: 24px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(191,163,106,0.15);
    }

    .hero-card img {
      border-radius: 18px;
      margin-bottom: 20px;
      width: 100%;
      object-fit: cover;
      max-height: 360px;
    }

    .hero-card h3 {
      margin-bottom: 8px;
      font-size: 22px;
    }

    .hero-card p {
      color: var(--muted);
    }

    /* STATS */
    .stats {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .stat-box {
      background: var(--white);
      padding: 24px;
      border-radius: 18px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .stat-box h3 {
      font-size: 30px;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .stat-box p {
      color: var(--muted);
      font-weight: 600;
    }

    /* GENERAL SECTIONS */
    section {
      padding: 90px 0;
    }

    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 55px;
    }

    .section-subtitle {
      display: inline-block;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .section-text {
      color: var(--muted);
      font-size: 17px;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-image img {
      border-radius: 24px;
      box-shadow: var(--shadow);
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 450px;
    }

    .about-content h3 {
      font-size: 30px;
      margin-bottom: 18px;
    }

    .about-content p {
      color: var(--muted);
      margin-bottom: 16px;
      font-size: 17px;
    }

    .about-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .about-list li {
      list-style: none;
      background: var(--white);
      padding: 16px 18px;
      border-radius: 14px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.04);
      font-weight: 600;
    }

    /* SERVICES */
    .services {
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }

    .service-card {
      background: linear-gradient(180deg, #fff, #fcfbf7);
      border-radius: 22px;
      padding: 32px 28px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid rgba(191,163,106,0.08);
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: rgba(191,163,106,0.12);
      font-size: 28px;
      margin-bottom: 20px;
    }

    .service-card h3 {
      margin-bottom: 12px;
      font-size: 22px;
    }

    .service-card p {
      color: var(--muted);
    }

    /* WHY US */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }

    .why-card {
      background: var(--white);
      padding: 28px 24px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .why-card span {
      font-size: 36px;
      display: block;
      margin-bottom: 14px;
    }

    .why-card h4 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .why-card p {
      color: var(--muted);
    }

    /* CONTACT */
    .contact {
      background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: stretch;
    }

    .contact-card,
    .contact-form,
    .map-box {
      background: var(--white);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 30px;
    }

    .contact-card h3,
    .contact-form h3,
    .map-box h3 {
      margin-bottom: 20px;
      font-size: 26px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .contact-item .icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: rgba(191,163,106,0.12);
      display: grid;
      place-items: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .contact-item p,
    .contact-item a {
      color: var(--muted);
      font-weight: 500;
    }

    form {
      display: grid;
      gap: 16px;
    }

    input,
    textarea,
    select {
      width: 100%;
      padding: 15px 16px;
      border: 1px solid #e6e2d8;
      border-radius: 14px;
      font-size: 15px;
      background: #fcfbf8;
      outline: none;
      transition: var(--transition);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(191,163,106,0.1);
      background: var(--white);
    }

    textarea {
      resize: vertical;
      min-height: 130px;
    }

    .map-box iframe {
      width: 100%;
      height: 300px;
      border: 0;
      border-radius: 18px;
    }

    /* FOOTER */
    footer {
      background: var(--dark-2);
      color: #d7d7d7;
      padding: 70px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 34px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--gold);
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .footer-logo img {
      height: 52px;
    }

    .footer-section h4 {
      color: var(--gold);
      margin-bottom: 18px;
      font-size: 18px;
    }

    .footer-section p,
    .footer-section a {
      color: #d7d7d7;
      display: block;
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .footer-section a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 14px;
      color: #b8b8b8;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 62px;
      height: 62px;
      background: #25D366;
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 30px;
      box-shadow: 0 12px 28px rgba(37,211,102,0.35);
      z-index: 999;
      transition: var(--transition);
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .about-image img {
        min-height: 320px;
      }
    }

    @media (max-width: 768px) {
      .top-bar .container {
        flex-direction: column;
        text-align: center;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: flex-end;   /* 🔥 KLJUČNO */
  text-align: right;       /* 🔥 tekst udesno */
  gap: 18px;
  padding: 22px 0 10px;
  border-top: 1px solid #eee;
}

      .nav-links.active {
        display: flex;
      }

 .nav-cta {
  display: none !important;
}

.nav-cta.active {
  display: flex;
  width: 100%;
  margin: 10px 0 20px;
  justify-content: center;
}

.nav-cta.active {
  max-width: 100%;
}

      .hero {
        padding: 70px 0 50px;
      }

      .hero-wrapper {
        flex-direction: column;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-buttons a {
        width: 100%;
      }

      section {
        padding: 70px 0;
      }

      .stats {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 520px) {
      .logo-box {
        font-size: 24px;
      }

      .logo-box img {
        height: 48px;
      }

      .hero-content p {
        font-size: 16px;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .section-text {
        font-size: 16px;
      }

      .contact-card,
      .contact-form,
      .map-box,
      .hero-card,
      .service-card,
      .why-card,
      .stat-box {
        padding: 24px;
      }

      .btn-primary,
      .btn-secondary,
      .btn-whatsapp {
        width: 100%;
      }
    }
 