
.navbar-container {
    background-color: #ffffff;
    color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    max-height: 40px;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
  }
  
  .nav-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links li a:hover {
    color: #c40000;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 35px;
    height: 18px;
    cursor: pointer;
    z-index: 200;
    position: relative;
  }
  
  .menu-toggle span {
    display: none;

  }
  
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  
  /* Responsive nav */
  @media (max-width: 768px) {


    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #000000;
        border-radius: 1px;
        transition: all 0.4s ease-in-out;
        transform-origin: center;
      }

    .nav-links {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        padding-top: 80px;
        padding-left: 30px;
        padding-right: 30px;
        transition: left 0.4s ease-in-out;
        z-index: 99;
        box-shadow: inset 0 0 60px rgba(255, 0, 51, 0.15);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
      }
      
  
    .nav-links li {
      border-bottom: 1px solid #333;
      padding: 15px 0;
    }
  
    .nav-links.show {
      left: 0;
    }
  
    .menu-toggle {
      display: flex;
      z-index: 100;
    }
  }


  .intro-business {
    background-image: url('../assets/img/bg12.jpg');
    color: #ffffff;
    padding: 150px 0;
    text-align: left;
    background-position: center;
    background-size: cover;

  }
  
  .intro-title {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(to right, #000000, rgba(36, 36, 36, 0));
    border-radius: 7px;
    padding-left: 20px;
  }
  
  
  .intro-text {
    font-size: 18px;
    max-width: 50%;
    margin-bottom: 35px;
    background: linear-gradient(to right, #000000, rgba(36, 36, 36, 0));
    border-radius: 7px;
    padding: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
  

  @media (max-width: 700px) {


    
  .intro-business {
  padding: 100px 0;
 }

    .intro-title {
      font-size: 36px;
      padding: 20px;
    }
  
    .intro-text {

      max-width: 100%;

    }


  }




  .intro-button {
    display: inline-block;
    background-color: #8b0000;
    color: #fff;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .intro-button:hover {
    background-color: #700016;
  }
  


  .business-marketing-features {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .feature-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }
  
  .feature-icon {
    font-size: 28px;
    color: #8b001c;
    margin-bottom: 15px;
  }
  
  .feature-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Anton', sans-serif;
    color: #000;
  }
  
  .feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  .project-approach {
    background-color: #1e1e1e;
    color: #fff;
    padding: 80px 0;
  }
  
  .approach-title {
    font-family: 'Anton', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .approach-text {
    font-size: 16px;
    line-height: 1.8;
    color: #f1f1f1;
  }
  
  .approach-image {
    max-width: 80%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
  }
  
  .contact-cta {
    background-color: #fff;
    color: #000;
    padding: 80px 0;
  }
  
  .cta-title {
    font-family: 'Anton', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
  }
  
  .cta-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #333;
  }
  
  .cta-call-button {
    background-color: #8b001c;
    color: #fff;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
  }
  
  .cta-call-button:hover {
    background-color: #700016;
  }
  
  .cta-or {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  /* Form */
  .cta-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-form input,
  .cta-form textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
  }
  
  .cta-form input:focus,
  .cta-form textarea:focus {
    border-color: #8b001c;
  }
  
  .cta-form button {
    background-color: #8b001c;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-form button:hover {
    background-color: #700016;
  }
  

  

  
  .hero-banner {
    background-color: #000000c8;
    padding: 80px 20px 40px;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(184, 166, 166, 0.03), inset 0 0 20px rgba(109, 99, 99, 0.05);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #c40000;
    margin-bottom: 10px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
    letter-spacing: 1px;
  }
  
  .breadcrumb-nav {
    color: #aaa;
    font-size: 1rem;
  }
  
  .breadcrumb-nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
  }
  
  .breadcrumb-nav a:hover {
    color: #c40000;
    text-decoration: underline;
  }


  /*ponuda*/

  .offer-section {
    background-color: #f5f5f5;
    padding: 20px 0;
  }
  
  .offer-block {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #8b001c;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .offer-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05), transparent);
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
  }
  
  .offer-block:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
  }
  
  .offer-header {
    background: linear-gradient(90deg, #000, transparent);
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .offer-arrow {
    font-size: 20px;
    color: #fff;
    margin-right: 10px;
  }
  
  .offer-title {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
  }
  
  .offer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    position: relative;
    z-index: 1;
  }
  
  .offer-description p {
    margin-bottom: 15px;
  }
  
  .offer-subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #8b001c;
  }
  
  .offer-list {
    padding-left: 20px;
    margin-bottom: 25px;
  }
  
  .offer-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  
  /*cenovnik*/

  .price-filter-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .price-filter-bar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .price-filter-bar li a {
    text-decoration: none;
    color: #8b001c;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }
  
  .price-filter-bar li a:hover {
    color: #000;
  }
  
  .pricing-section {
    padding: 30px 0;
  }
  
  .pricing-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin-bottom: 30px;
    color: #000;
  }
  
  .price-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .price-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 25px;
    flex: 1 1 calc(50% - 20px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid transparent;
  }
  
  .price-card:hover {
    transform: translateY(-5px);
    border-left: 5px solid #8b001c;
  }
  
  .price-card.highlight {
    border-left: 5px solid #8b001c;
    background-color: #fef6f7;
  }
  
  .price {
    font-size: 22px;
    font-weight: 700;
    color: #8b001c;
    margin: 10px 0;
  }
  
  @media (max-width: 768px) {
    .price-grid {
      flex-direction: column;
    }
  
    .price-card {
      flex: 1 1 100%;
    }
  }
  

  .pricing-intro {
    background-color: #fefefe;
    padding: 40px 0 20px;
  }
  
  .pricing-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: center;
  }
  

  /*projekti*/

  .projects-intro {
    background: linear-gradient(120deg, #1e1e1e, #000);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .projects-title {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  .projects-subtext {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ddd;
  }
  
  .project-client-section {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .client-block {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
  }
  
  .client-img {
  
    max-width: 300px;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .client-img img {
    width: 80%;

    object-fit: cover;
  }
  
.klijent{
  padding: 20px;
}

  .client-content {
    flex: 2 1 500px;
    padding: 30px;
  }
  
  .client-name {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
  }
  
  .client-handle {
    color: #8b001c;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .client-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .client-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
  }
  
  .client-stats i {
    color: #8b001c;
    margin-right: 8px;
  }
  
  .report-button {
    background-color: #8b001c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .report-button:hover {
    background-color: #700016;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .client-block {
      flex-direction: column;
    }
  
    .client-img {
      max-width: 100%;
    }
  
    .client-content {
      padding: 20px;
    }
  }
  


  .site-footer {
    background-color: #ffffff;
    padding: 60px 20px 30px;
    color: #000000;
    border-top: 1px solid rgb(0, 0, 0);
  }
  
  .footer-logo {
    max-width: 100px;
    margin-bottom: 25px;
  }
  
  .footer-text {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #aaa;
  }
  
  .footer-divider {
    width: 60px;
    height: 3px;
    background-color: #9a001f;
    margin: 25px auto 25px;
    border-radius: 5px;
    opacity: 0.8;
    
  }
  
  .footer-copy {
    font-size: 0.9rem;
    color: #666;
  }
  
  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #c40000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .icon-circle:hover {
    background-color: #ff1a4d;
    transform: scale(1.1);
  }
  

  .butonizer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
  }
  
  #butonizer-toggle {
    width: 54px;
    height: 54px;
    background-color: #c40000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
    cursor: pointer;
    animation: pulse 1.6s infinite;
    transition: transform 0.3s ease;
  }
  
  #butonizer-toggle:hover {
    transform: scale(1.1);
  }
  
  .butonizer-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 70px;
    left: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;

  }

  .butonizer-options a{
    text-decoration: none;
  }
  
  .butonizer.active .butonizer-options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .buton-circle {
    width: 44px;
    height: 44px;
    background-color: #111;
    color: #d40404;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .buton-circle:hover {
    background-color: #a50101;
    color: #fff;
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
  }
  

 