body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    color: #222;
    background: #f9f9f9;
    line-height: 1.6; 
}/* Reset i osnovno */
* { box-sizing: border-box; margin:0; padding:0; }

/* Flex i grid pomoćnici */
.flex { display: flex; }
.between { justify-content: space-between; }
.items-center { align-items: center; }

/* Logo */
.logo { font-family: 'Inter', sans-serif; }
.logo-bold { font-weight: 800; font-size: 1.5rem; }
.logo-light { font-weight: 300; font-size: 1.5rem; }

/* Header, footer, sekcije */
header, footer { background: #fdfcfc; }
section { padding: 4rem 1.5rem; }

.hero {
    position: relative;
    /* height: 100vh; */
   padding: 2rem 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-end; /* Poravnaj sadržaj na dno */
}


/* Hero background sa stari TV efekat + scanline jitter */
.hero-bg {
    background-image: url('/static/images/GasiFB.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.9;
    animation: tvFlicker 15s infinite, scanlineJitter 5s infinite linear;
}
@keyframes tvFlicker {
    0%, 100% { opacity: 1; }
    10% { opacity: 0.85; }
    20% { opacity: 0.95; }
    30% { opacity: 0.88; }
    40% { opacity: 0.97; }
    50% { opacity: 0.9; }
    60% { opacity: 0.96; }
    70% { opacity: 0.87; }
    80% { opacity: 0.95; }
    90% { opacity: 0.89; }
}

/* Horizontalni “scanline jitter” efekat */
@keyframes scanlineJitter {
    0% { transform: translateY(0); }
    25% { transform: translateY(1px); }
    50% { transform: translateY(-1px); }
    75% { transform: translateY(1px); }
    100% { transform: translateY(0); }
}


/* Hero 
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg {
  position: absolute; inset:0;
  background: linear-gradient(to br, #dc9b48, #f06, #00f);
  opacity: .8;
  /* ili background-image: url(...); background-size: cover; 
}
.hero-content { position: relative; z-index:10; color:#fff; max-width:600px; }
.hero-content h1 { font-size:2.5rem; margin-bottom:1rem; line-height:1.2; }
.hero-content p  { font-size:1.25rem; margin-bottom:2rem; }*/

/* Gumb */
.btn-primary {
  position: relative;
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s ease, background 0.3s ease;
  z-index: 1;
  border: none;
  cursor: pointer;
}

/* Pulsirajući okvir koristeći box-shadow
.btn-primary::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px 2px #3b82f6, 0 0 20px 4px #60a5fa, 0 0 30px 6px #9333ea;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: glowPulse 2s infinite;
  z-index: 0;
} */

.btn-primary::before {
  content: '';
  position: absolute;
  top: -2px; 
  left: -2px; 
  right: -2px; 
  bottom: -2px;
  border-radius: 0.5rem;
  /* Manji, suptilniji pulsirajući sjaj */
  box-shadow: 
    0 0 4px 1px #3b82f6, 
    0 0 8px 2px #60a5fa, 
    0 0 12px 3px #9333ea;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  animation: glowPulse 2s infinite;
  z-index: 0;
}


/* Hover efekat */
.btn-primary:hover {
  transform: scale(1.05);
}

/* Animacija pulsiranja okvira */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}



/* Responsive prilagođavanje za male ekrane
@media (max-width: 480px) {
  .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  
} */


.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap:2rem;
  opacity:.6;
}
.logos-grid img { width: auto; height: 3rem; object-fit: contain; }

/* Footer */
.footer { padding: 2rem 1.5rem; border-top:1px solid #e5e5e5; }
.footer-nav a { margin-left:1rem; color:#555; text-decoration:none; }
.footer-nav a:hover { color:#000; }
/* General Styles */
.values {
    padding: 4rem 0; /* Vertical padding for the section */
    background-color: #f9f9f9; /* Light background color */
}

.values h2 {
    font-size: 2.5rem; /* Font size for the heading */
    color: #333; /* Dark text color */
    margin-bottom: 1.5rem; /* Spacing below the heading */
}

.values ul {
    list-style-type: none; /* Remove default list style */
    padding: 0; /* Remove default padding */
}

.values li {
    background-color: #fff; /* White background for list items */
    border: 1px solid #ddd; /* Light border around list items */
    border-radius: 5px; /* Rounded corners */
    padding: 1rem; /* Padding inside list items */
    margin-bottom: 1rem; /* Spacing between list items */
    transition: transform 0.2s; /* Smooth transition for hover effect */
}

.values li:hover {
    transform: scale(1.02); /* Slightly enlarge on hover */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect on hover */
}

.values p {
    font-size: 1.2rem; /* Font size for the paragraph */
    color: #666; /* Gray text color */
    margin-top: 2rem; /* Spacing above the paragraph */
}



@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65); /* crni overlay, 50% providan */
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
        /* margin-top: 1px;  */
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #f3f3f3;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.hero-content ul li {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 3rem 1rem 2rem 1rem; /* Dodaj više dole ako želiš više prostora od dna */
    text-align: center;
    animation: fadeInText 2s ease-in;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
        /* margin-top: 1px;  */
}

.hero-content ul li::before {  
    color: hsl(200, 25%, 95%);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
/*body { background: red !important; }*/
/* ... dodaj slične klase za ostale sekcije (dna, services, cards itd.) */
.menu-btn {
    background-color: transparent; /* Prozirna pozadina */
      border: none ;
    color: #333; /* Boja teksta */
    padding: 10px 20px; /* Unutrašnji razmak */
    font-size: 16px; /* Veličina fonta */
    cursor: pointer; /* Kursor pri pregledu */
    transition: background-color 0.3s, color 0.3s; /* Efekti prelaza */
}

.menu-btn:hover {
    background-color: #333; /* Pozadina pri prelazu */
    color: #fff; /* Boja teksta pri prelazu */
}
.values {
    background-color: #f9f9f9; /* Svetla pozadina */
    border-radius: 10px; /* Zaobljeni uglovi */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Senka */
}
/* Dodavanje skalabilnosti za manje uređaje */
/* Dodavanje skalabilnosti za manje uređaje */
@media (max-width: 768px) {
    .menu-btn {
        font-size: 14px; /* Smanjena veličina fonta */
        padding: 8px 15px; /* Manji unutrašnji razmak */
        width: 100%; /* Dugme zauzima celu širinu */
        max-width: 300px; /* Maksimalna širina dugmeta */
        text-align: center; /* Centriran tekst */
        margin: 10px auto; /* Centrirano na stranici */
    }
}


h2 {
    color: #2c3e50; /* Tamna boja za naslov */
}

ul {
    list-style-type: none; /* Uklanjanje oznaka sa liste */
    padding: 0; /* Uklanjanje padding-a */
}

li {
    position: relative; /* Pozicioniranje za pseudo-element */
    padding-left: 20px; /* Razmak sa leve strane */
}

li::before {
    /* content: "*"; Dodavanje simbola */
    
    position: absolute; /* Pozicioniranje simbola */
    left: 0; /* Pozicioniranje levo */
    color: #3498db; /* Plava boja za simbol */
}

.text-lg {
    line-height: 1.6; /* Povećanje razmaka između redova */
}

.cta-btn {
    background-color: #3498db; /* Plava pozadina */
    color: white; /* Boja teksta */
    padding: 10px 20px; /* Unutrašnji razmak */
    font-size: 16px; /* Veličina fonta */
    border: none; /* Bez ivice */
    border-radius: 5px; /* Zaobljeni uglovi */
    cursor: pointer; /* Kursor kao ruka */
    transition: background-color 0.3s; /* Efekat prelaza */
}

.cta-btn:hover {
    background-color:  #333; /* Tamnija nijansa pri prelazu */
}

/* static/styles.css */

.pop-up-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
     z-index: 9999; /* OVO JE KLJUČNO */
}

.form-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;      /* Dodaj ovo */
    overflow-y: auto;      /* Dodaj ovo */
}

.close {
    cursor: pointer;
    float: right;
    font-size: 20px;
}

.form-input, .form-select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
}

button[type="submit"] {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #007bff;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-grid > .full-width {
    grid-column: 1 / -1; /* Polje koje treba da zauzima obe kolone (npr. textarea) */
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.hidden {
    display: none !important;
}
.ml-auto { margin-left: auto; }
/* Dropdown za desktop */


#mainNav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.5rem 0;
}
#mainNav li {
  position: relative;
  list-style: none;
}
#mainNav a, #mainNav button {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background: none;
  border: none;
  text-align: left;
  /* Ensure no underline on links or buttons inside the dropdown */
  text-decoration: none !important;
}
#mainNav a:hover, #mainNav button:hover {
  background: #15122b;
  /* also prevent underline on hover (override other rules) */
  text-decoration: none !important;
}
.group > ul {
  display: none; /* hidden by default */
  position: absolute; /* position relative to the .group (which is positioned) */
  /* open to the left of the parent so it stays inside a right-aligned menu */
  left: auto;
  right: 100%;
  top: 0;
  background: #130c2f;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 180px;
  z-index: 9999;
  transform: translateX(-8px);
}
.group:focus-within > ul,
.group:hover > ul {
  display: block;
}
#mainNav ul {
    list-style: none !important;
    padding: 0 !important;
}
#mainNav li {
    padding-left: 0 !important;
}
#mainNav li::before {
    content: none !important;
}


/* Header mora biti pozicioniran kao reference za absolute nav */
header {
  position: relative; /* ovo je ključno */
}

/* Nav koji je skriven dok se ne klikne dugme */
#mainNav {
  position: absolute; /* sada je u okviru <header> */
  right: 0;
  top: 100%; /* odmah ispod header visine */
  margin-top: 0.5rem;
  background: #222;
  border-radius: 0.5rem;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 111;
}

/* Sakriveno stanje */
.hidden {
  display: none !important;
}

/* --------------------------------------------
   Our Values Section
---------------------------------------------*/
.values {
  background-color: #f9fafb;
  padding: 4rem 1rem;
}

.values__inner {
  max-width: 72rem;   /* ~6xl */
  margin: 0 auto;
  text-align: center;
}

.values__title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;     /* gray-900 */
}

.values__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.values__item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
  font-size: 1.125rem; /* text-lg */
  color: #374151;      /* gray-700 */
}

.values__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 0.5rem; height: 0.5rem;
  background-color: #2563eb; /* blue-600 */
  border-radius: 50%;
}

.values__item strong {
  color: #111827;
}

.values__text {
  font-size: 1.125rem;
  color: #4b5563; /* gray-600 */
  margin-bottom: 2rem;
}

.values__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb; /* blue-600 */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, transform 0.1s;
}

.values__cta:hover {
  background-color: #1e40af; /* blue-800 */
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .values__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
  .values__item {
    margin-bottom: 1.5rem;
  }
}
/* --------------------------------------------
   Highlighted CTA block
---------------------------------------------*/
.values__highlight {
  background-color: #111;        /* skoro crna pozadina */
  color: #fff;                   /* bela slova */
  padding: 2rem 1.5rem;          /* unutrašnji razmak */
  border-radius: 0.5rem;         /* zaobljeni uglovi */
  max-width: 48rem;              /* ograniči širinu bloka */
  margin: 0 auto 2rem;           /* centriraj i dodaj donji margin */
  text-align: center;
}

.values__highlight p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;           /* text-lg */
  line-height: 1.6;
}

.values__highlight .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;     /* plavo dugme */
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.values__highlight .cta-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* ===== Our Values Section ===== */
.values {
  background-color: #f9fafb;
  padding: 4rem 1rem;
}

.values__inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.values__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;
}

.values__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.values__item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #374151;
}

.values__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  background: url('/static/images/check.svg') no-repeat center center;
  background-size: contain;
}

.values__item strong {
  color: #111827;
}

/* ===== Highlighted CTA Block ===== */
.values__highlight {
  background-color: #111;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.values__highlight-text {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #f9fafb;
}

.values__highlight-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.values__highlight-btn:hover {
  background-color: #af851085;
  transform: translateY(-2px);
}

/* ===== Responsive Grid for List ===== */
@media (min-width: 768px) {
  .values__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
}
.cta-btn {
    position: relative;
    font-family: "Satoshi", "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: #0b1220; 
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0.9rem 2.4rem;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pulsirajući glow na hover */
.cta-btn::after {
    content: "";
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px; /* širi rub od dugmeta */
    border-radius: 12px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa, #9333ea, #3b82f6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glowPulse 2s infinite;
}

/* Hover efekt */
.cta-btn:hover::after {
    opacity: 1;
}

/* Animacija pulsiranja */
@keyframes glowPulse {
    0%, 100% {
        filter: blur(4px);
        opacity: 0.7;
        background-position: 0% 50%;
    }
    50% {
        filter: blur(8px);
        opacity: 1;
        background-position: 100% 50%;
    }
}

.cta-btn:hover {
    transform: scale(1.03);
}
/* --- SAMO MODERAN PADAJUĆI MENI --- */

/* Menu Button */
#menuBtn {
    background: none;
    border: none;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s;
}

#menuBtn:hover {
    opacity: 0.8;
}

/* Moderan Dropdown Menu */
/* --- MODERAN PADAJUĆI MENI --- */
#menuBtn {
    background: #111827;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

#menuBtn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Dropdown Menu - MODERAN SVETAO STIL */
#mainNav {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    background: #ffffff;
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    z-index: 111;
}

#mainNav ul { 
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#mainNav li {
    margin: 0;
    padding-left: 0 !important;
    position: relative;
    list-style: none;
}

#mainNav li::before {
    content: none !important;
}

#mainNav a, 
#mainNav button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    color: #374151;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

#mainNav a:hover, 
#mainNav button:hover {
    background: #f3f4f6;
    color: #2563eb;
    text-decoration: none !important;
}

/* Services Button sa Strelicom */
#servicesToggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
    opacity: 0.6;
}

/* Services Podmeni - MODERAN STIL */
#servicesSubmenu {
    background: #f9fafb;
    list-style: none;
    border-left: 3px solid #2563eb;
    margin: 5px 0;
    padding: 0;
}

#servicesSubmenu li {
    margin: 0;
}

#servicesSubmenu a {
    padding-left: 45px;
    font-size: 14px;
    color: #6b7280;
}

#servicesSubmenu a:hover {
    background: #e5e7eb;
    color: #1e40af;
}

/* Services Podmeni - SA ANIMACIJOM */
#servicesSubmenu {
    background: #f9fafb;
    list-style: none !important;
    border-left: 3px solid #2563eb;
    margin: 5px 0;
    padding: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#servicesSubmenu.active {
    max-height: 500px; /* Dovoljno veliko da stane sve */
}

#servicesSubmenu li {
    margin: 0;
    padding-left: 0 !important;
}

#servicesSubmenu li::before {
    content: none !important;
}

#servicesSubmenu a {
    padding: 10px 24px 10px 45px;
    font-size: 14px;
    color: #6b7280;
    display: block;
}

#servicesSubmenu a:hover {
    background: #e5e7eb;
    color: #1e40af;
}

#arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 12px;
    opacity: 0.6;
}

#arrow.rotate {
    transform: rotate(180deg);
}
/* Services button kao link */
#servicesToggle {
    background: transparent !important;
    border: none;
    color: white;
    cursor: pointer;
    font-family: inherit;
}

#servicesToggle:hover {
    background: #1f2937 !important;
}

#arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
