:root {
    --primary-color: #40e0d0;
    --secondary-color: #008080;
    --text-color: #333;
    --bg-color: #ffffff;
  }
  
  body {
    font-family: "Poppins", sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Poppins", sans-serif !important;
  }
  
  header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
  }
  
  header.hide {
    transform: translateY(-100%);
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    color: #000000;
  }
  
  .logo svg {
    margin-right: 10px;
  }
  
  .nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
  }
  
  .phone-number {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 600;
  }
  
  .phone-icon {
    margin-right: 5px;
  }
  
  .social-icon {
    color: #000;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: var(--secondary-color);
  }
  
  .hero {
    background-color: #fff;
    padding: 24px 0 50px;
  }

  .hero-media-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
  }

  .hero-slogan {
    text-align: center;
    padding: 22px 18px 10px;
    background: linear-gradient(180deg, #f4ebe3 0%, #fff 100%);
  }

  .hero-slogan__line,
  .hero-slogan__brand,
  .hero-slogan__sub {
    margin: 0;
    color: #0f5f63;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .hero-slogan__line {
    font-size: clamp(1.45rem, 5vw, 2.1rem);
    font-weight: 700;
  }

  .hero-slogan__brand {
    margin-top: 8px;
    font-size: clamp(1.25rem, 4.2vw, 1.85rem);
    font-weight: 700;
  }

  .hero-slogan__sub {
    margin-top: 4px;
    font-size: clamp(0.9rem, 3vw, 1.15rem);
    font-weight: 500;
  }

  .hero-media {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    margin: 0 auto;
    border-radius: 0;
    background: #fff;
  }

  .working-hours {
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
    padding: 10px 12px;
    font-weight: bold;
    /* Clear fixed header so content isn't covered */
    margin-top: 72px;
    white-space: normal;
    overflow: visible;
    line-height: 1.35;
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 12px 0 24px;
    }

    .hero-media-wrap {
      border-radius: 10px;
    }

    .hero-slogan {
      padding: 20px 14px 8px;
    }

    .working-hours {
      margin-top: 64px;
      padding: 8px 14px;
      font-size: 0.82rem;
      line-height: 1.4;
    }
  }
  
  h1,
  h2,
  h3 {
    color: var(--secondary-color);
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
  }
  
  .cta-button:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  
  #servicesCarousel {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    max-height: 400px;
  }
  
  .carousel-caption {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 15px;
  }
  
  .carousel-caption h3 {
    color: #fff;
  }
  
  .carousel-caption p {
    color: #ddd;
  }
  
  .price-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .price-item:hover {
    transform: translateY(-5px);
  }
  
  .price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8em;
    margin-right: 10px;
  }
  
  .price .new-price {
    color: #e74c3c;
  }
  
  .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  
  footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  .floating {
    animation: float 4s ease-in-out infinite;
  }

  @media (prefers-reduced-motion: reduce) {
    .floating {
      animation: none;
    }

    .gallery-item img,
    .price-item,
    .gallery-caption {
      transition: none;
    }
  }

  .carousel-item video {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }

  #galerija,
  #cenovnik,
  #radno-vreme,
  #kontakt {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
  }
  
  @media (max-width: 768px) {
    .hero-image,
    .hero-text {
      text-align: center;
    }

    .hero-text h1 {
      font-size: 1.35rem;
      line-height: 1.35;
      margin-top: 1rem;
    }

    .hero-media {
      max-height: none;
    }
  }
  
  .contact-info {
    background-color: #f8f9fa;
    padding: 50px 0;
  }
  
  .contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
  }
  
  .contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .contact-card h3 {
    margin-bottom: 15px;
  }
  
  .contact-card p {
    margin-bottom: 5px;
  }
  
  .contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-card a:hover {
    color: var(--primary-color);
  }
  
  .radno-vreme {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 50px 0;
  }
  
  .radno-vreme h2 {
    color: #fff;
  }
  
  .radno-vreme-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .radno-vreme-item:hover {
    transform: translateY(-5px);
  }
  
  .radno-vreme-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .radno-vreme-item p {
    margin-bottom: 0;
  }
  
  .link-no-style {
    color: inherit;
    text-decoration: inherit;
  }

  /* Mobile fixed call-to-action bar */
  .mobile-call-bar {
    display: none;
  }

  @media (max-width: 768px) {
    body {
      padding-bottom: 64px;
    }

    .mobile-call-bar {
      display: flex;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 2000;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 14px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #fff;
      text-decoration: none;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
      -webkit-tap-highlight-color: transparent;
    }

    .mobile-call-bar:active {
      transform: translateY(1px);
    }

    .mobile-call-bar__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.18);
    }

    .mobile-call-bar__text {
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .mobile-call-bar__text strong {
      font-weight: 800;
    }
  }