/* ---------------------------------- Screenshot Section ---------------------------------------------- */
.screenshot-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.90) 40%, rgba(0, 0, 0, 0.75) 75%, rgba(0, 0, 0, 0.9) 100%),
        url('../img/eservismanager-screenshot-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.title-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 50px;
}
.screenshot-title  {
    position: relative;
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #656d71; 
}
.title-back {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
    font-size: 4.5rem;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 123, 0, 0.17); 
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}
.screenshot-subtitle {
    text-align: center;
    color: #c1c6c9;
    font-size: 1.2rem;
    padding: 0 20px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  padding: 30px;
}
.gallery-item {
    position: relative;
    width: 550px;
    height: 300px;
    padding: 0;
    margin: 20px 0;
    overflow: hidden;
}
.gallery-item .hover-text {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: top 0.6s ease;
  text-align: center;
}
.gallery-item:hover .hover-text {
  top: 0;
}
.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.hover-text .btn-detaljnije {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 30px;
  margin-top: 30px;
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.hover-text .btn-detaljnije:hover {
    background-color: #fff; 
    color: #000; 
}
.hover-text .btn-detaljnije i {
  margin-left: 5px;
  vertical-align: middle;
}
/* ---------------------------------- Screenshot Section ---------------------------------------------- */
/* ---------------------------------- Recenzije Section ---------------------------------------------- */
.recenzije-section {
    padding: 80px 0; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    background-color: #0d0d0d; 
    color: #e0e0e0;
}
.recenzija-naslov {
    text-align: center;
    margin-bottom: 50px; 
}
.recenzija-naslov p {
    font-size: 1.1em;
    color: #c1c6c9; 
    margin-bottom: 10px;
    font-weight: 400;
}
.recenzija-naslov h2 {
    font-size: 3em; 
    color: #656d71; 
    margin-top: 0;
    line-height: 1.2;
}
.slider-container {
    position: relative; 
    width: 80vw;
    margin: 0 auto;
    display: flex; 
    align-items: center; 
}
.slider-button {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #1a1a1a;
    width: 60px;
    height: 60px;
    color: white;
    border: 1px solid #333333;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; 
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.slider-button:hover {
    background-color: #242424; 
    border: 1px solid #1a1a1a;
}
.slider-button.prev {
    left: -70px; 
}
.slider-button.next {
    right: -70px; 
}
.prosecna-ocena-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.prosecna-ocena-kartica {
  align-items: center;
  text-align: center;
  width: max-content;
  margin: 0 auto;
}
.ocena-zvezdice {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 10px;
  color: #FFA500;
  font-size: 2.5rem;
  padding: 0 0 0 10px;
  letter-spacing: 20px;
  overflow: hidden;
}
.ocena-badge {
  color: #1a1a1a;
  background: linear-gradient(90deg, #613f00, #FFA500, #FFA500, #613f00);
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 8px;
  margin: 0;
  letter-spacing: normal;
}
.recenzija-scroll-box {
    position: relative;
    overflow: hidden; 
    width: 100%;
    padding: 10px; 
    box-sizing: border-box;
}
.recenzija-rew {
    display: flex;
    flex-wrap: nowrap; 
    transition: transform 0.5s ease-in-out; 
    gap: 15px; 
    will-change: transform;
}
.recenzija {
    flex-shrink: 0; 
    width: 400px; 
    margin: 0 10px; 
    background: #1a1a1a; 
    border: 1px solid #333333; 
    border-radius: 12px; 
    padding: 30px; 
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
    min-height: 320px; 
    color: #e0e0e0; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    position: relative; 
    box-sizing: border-box;
}
/* Vodena marka -  ne utiče na raspored glavnog sadržaja */
.watermark-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.07; 
    z-index: 1;
}
.watermark-logo img {
    width: 50px; 
    height: 50px;
}
/* Gornji deo kartice: Navodnici, Naslov/Slogan, Komentar */
.recenzija-content-area {
    flex-grow: 1;
    margin-bottom: 20px;
    position: relative;
    padding-top: 15px; 
}
.quote-icon {
    font-family: Arial, sans-serif; 
    font-size: 4em; 
    color: #007bff;
    opacity: 0.7;
    position: absolute;
    top: -15px;
    left: 0;
    line-height: 1;
    z-index: 2;
    font-weight: bold;
}
.recenzija-text {
    font-size: 0.95em; 
    line-height: 1.7;
    color: #b0b0b0;
    margin-top: 40px; 
    padding: 0 10px 0 0; 
    max-height: 240px; 
    overflow-y: auto;
}
.recenzija-text::-webkit-scrollbar {
    width: 6px;
}
.recenzija-text::-webkit-scrollbar-track {
    background: #2a2a2a; 
    border-radius: 3px;
}
.recenzija-text::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}
.recenzija-text::-webkit-scrollbar-thumb:hover {
    background: #777;
}
/* Donji deo kartice: Profil korisnika i zvezdice */
.recenzija-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 20px; 
    border-top: 1px solid #333333;
}
.user-profile {
    display: flex;
    align-items: center;
}
.user-profile .profile-img {
    width: 48px; 
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid #007bff; 
}
.user-details {
    display: flex;
    flex-direction: column;
}
.user-name {
    font-size: 0.9em; 
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}
.user-title {
    font-size: 0.85em; 
    color: #b0b0b0;
    margin: 0;
}
.user-rating {
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
}
.user-rating .ocena-rew {
    font-size: 1.3em; 
    color: #ffd014; 
    margin: 0;
    letter-spacing: 2px;
}
.datum-rew {
    font-size: 0.75rem;
    color: #b0b0b0; 
    margin-top: 4px;
}
/* ---------------------------------- Recenzije Section ---------------------------------------------- */
/* ---------------------------------- FAQ Section ---------------------------------------------- */
.faq-section {
    width: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.90) 40%, rgba(0, 0, 0, 0.75) 75%, rgba(0, 0, 0, 0.9) 100%),
        url('../img/faq-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding: 100px 10px;
}
.faq-section.faq-page {
    background-image: none;
}
.faq-container {
    color: #f9fafb;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    max-width: 1000px;
    margin: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 13, 0.08);
    background: linear-gradient(120deg, rgba(0, 255, 13, 0.06) 0%, rgba(0, 0, 0, 0) 100%);
}
.faq-section h2 {
  font-size: 2.1rem;
  color: #656d71;
  margin-bottom: 50px;
  text-align: center;
}
.faq-section p {
  font-size: 1rem;
  color: #656d71;
  margin-bottom: 30px;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid #374151;
}

.faq-question {
  width: 100%;
  background: none;
  color: #f9fafb;
  text-align: left;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background-color: #374151;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
  line-height: 1.5;
  color: #b0b0b0;
  font-size: 0.9rem;
}
.faq-answer p {
  margin: 12px 0;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #b0b0b0;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 12px 18px;
}
.faq-question .icon {
    font-weight: 300;
    font-size: 1.7rem;
    transition: transform 0.3s ease;
}
.faq-item.active .icon {
  transform: rotate(45deg); /* + postaje x */
  color: #ff0000;
}
.faq-cta-inline {
  background: linear-gradient(120deg, rgba(0, 255, 13, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 75px 0 rgba(0, 255, 13, 0.1);
  text-align: center;
  max-width: 1000px;
  margin: 3rem auto;
}
.faq-cta-inline h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #656d71;
}
.faq-cta-inline p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #c1c6c9;
}
.faq-cta-button {
  display: inline-block;
  background: linear-gradient(to bottom, #80ff00, #356900);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.faq-cta-button:hover {
  background: linear-gradient(to bottom, #5bb600, #264d00);
  transform: translateY(-2px);
  color: #ffffff;
}
/* ---------------------------------- FAQ Section ---------------------------------------------- */