html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Ako koristiš Bootstrap grid: */
.row {
  margin-left: 0;
  margin-right: 0;
}

body {
  font-family: 'Inter', sans-serif !important;
}

  .grey-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  margin-top: 15px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 700;
  text-align: left;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.custom-list i {
  color: #4e9810; /* Red color for the icon */
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 5px;
}

.custom-list div {
  text-align: left;
}

.custom-list strong {
  font-size: 20px;
  color: #333;
}

.custom-list .description {
  display: inline-block;
  margin-top: px;
  font-style: italic;
  padding-bottom: 2px;
  color: #555;
  font-size: 15px;
}


/* Image styling */
.image-placeholder img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
.image-placeholder {
  padding-top: 50px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .grey-section {
    padding: 40px 15px;
  }
  .section-title {
    font-size: 26px;
    text-align: center;
  }
  .custom-list li {
    justify-content: center;
  }
}








.cta-mobile {
  margin-top: 20px;
  padding: 10px;
}

.cta-message {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.phone-number {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.phone-number a {
  text-decoration: none;
  color: #333;
  margin-left: 5px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.btn-cta-phone, .btn-cta-online {
  width: 280px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta-phone {
  background-color: #f1f1f1;
  color: #333;
  border: 1px solid #ccc;
}

.btn-cta-phone:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: black;
  text-decoration: none;
}

.btn-cta-online {
  background-color: #e60000;
  color: #fff;
  border: none;
}

.btn-cta-online:hover,
.btn-cta-online:active,
.btn-cta-online:hover {
  background-color: #cc0000;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.price-note {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  display: block;        /* ← Ovo dodaj */
  width: 100%;           /* ← I ovo */
  text-align: center;    /* ← I ovo */
}





/* seckija za dugmen u meniju desktop */

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.contactPhone {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: -1.6rem;
}

.contactPhone span {
  font-weight: bold;
  font-size: 16px;
}

.contactPhone a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
  margin-left: 5px;
}

.btn-check-price {
  background-color: red;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-check-price:hover,
.btn-check-price:focus,
.btn-check-price:active {
  background-color: #cc0000;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.price-note {
  font-size: 12px;
  color: #555;
  margin-top: 3px;
  width: 100%;
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .btn-check-price {
    width: 100%;
    text-align: center;
  }

  .price-note {
    text-align: center;
    margin-top: 5px;
  }
}






.hero-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.5s ease;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.hero-line {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, rgb(6, 37, 242) 33%, #ed2224 33%);
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-button:hover,
.hero-button:focus,
.hero-button:active {
  background-color: #cc0000;
  transform: scale(1.05);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

/* Animacija FadeIn */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive za telefon */
@media (max-width: 768px) {
  /* .hero-container {
    height: 450px;
  } */

  .hero-container {
    height: 400px; /* Ili po potrebi čak i manje */
    margin-top: 200px; /* Daj malo prostora ispod menija */
  }

   .hero-content {
    display: none;
  }

  /* .hero-content {
    max-width: 90%;
    padding: 20px;
    margin: 0 auto;
  } */
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content h2 {
    font-size: 20px;
  }
}

.btn-cta-phone-modal {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 280px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-cta-phone-modal:hover,
.btn-cta-phone-modal:focus,
.btn-cta-phone-modal:active {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: scale(1.02); /* efekat malo veće dugme na hover */
  color: #fff;
  text-decoration: none; 
}