*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter;
}

body{
background:#0f172a;
color:white;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.navbar{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
z-index:1000;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:50px;
}

.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
}

.hero-social-proof {
  margin: 15px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 5px;
}

.star {
  margin: 0 2px;
}

.hero-social-proof p {
  font-size: 14px;
  color: #555;
}

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
height:3px;
width:25px;
background:white;
margin:4px 0;
display:block;
}


/* HERO BACKGROUND */

.hero{
position:relative;
overflow:hidden;
padding-top:140px;
}

/* GLAVNI GRADIENT */

.hero-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg, #0f172a 40%, #1e293b 100%);
z-index:-2;
}

/* BLUR SHAPE 1 */

.hero::before{
content:"";
position:absolute;
top:-100px;
left:-100px;
width:400px;
height:400px;
background:radial-gradient(circle, rgba(99,102,241,0.25), transparent 70%);
filter:blur(80px);
z-index:-1;
}

/* BLUR SHAPE 2 */

.hero::after{
content:"";
position:absolute;
bottom:-120px;
right:-120px;
width:400px;
height:400px;
background:radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%);
filter:blur(100px);
z-index:-1;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero h1{
font-size:52px;
line-height:1.2;
font-weight:800;
letter-spacing:-1px;
}

.hero p{
font-size:18px;
padding: 20px;
color:#cbd5f5;
max-width:500px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.hero-image{
position:relative;
display:flex;
justify-content:center;
align-items:center;
}

.hero-image img{
width:100%;
max-width:500px;
position:relative;
z-index:2;
border-radius: 20px;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
}



.btn-primary{
background:linear-gradient(135deg, #6366f1, #4f46e5);
padding:14px 28px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:600;
box-shadow:0 10px 25px rgba(99,102,241,0.4);
transition:0.3s;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(99,102,241,0.6);
}

.btn-secondary{
border:1px solid white;
padding:14px 28px;
border-radius:30px;
text-decoration:none;
color:white;
}

.btn-secondary:hover{
    transform: translateY(-3px);
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:16px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-btn{
margin-top:25px;
display:inline-block;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.portfolio-item{
position:relative;
overflow:hidden;
border-radius:16px;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.3s;
}

.portfolio-item:hover .overlay{
opacity:1;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin-bottom:15px;
border:none;
border-radius:10px;
}

.contact-form button{
background:#6366f1;
border:none;
padding:14px;
border-radius:10px;
color:white;
}

/* Potpuno sakrivanje honeypot polja */
[name="bot-field"], 
.contact-form p:has(input[name="bot-field"]) {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

#topBtn{
position:fixed;
bottom:30px;
right:30px;
background:#6366f1;
color:white;
border:none;
padding:12px;
border-radius:50%;
display:none;
}



/* PORTFOLIO SLIDER */

.portfolio{
padding:120px 20px;
}

.section-title{
text-align:center;
font-size:40px;
margin-bottom:60px;
}

.slider{
width:100%;
overflow:hidden;
position:relative;
}

.slide-track{
display:flex;
gap:30px;
animation:scroll 15s linear infinite;
}

.slide{
min-width:350px;
height:220px;
position:relative;
border-radius:16px;
overflow:hidden;
flex-shrink:0;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.slide:hover .slide-overlay{
opacity:1;
}

.visit-btn{
padding:12px 24px;
background:#6366f1;
color:white;
text-decoration:none;
border-radius:30px;
font-weight:600;
transition:0.3s;
}

.visit-btn:hover{
transform:scale(1.1);
background:#4f46e5;
}

/* SLIDER */

.slider{
overflow:hidden;
width:100%;
padding:40px 0;
}

.slide-track{
display:flex;
gap:30px;
animation:scroll 15s linear infinite;
}

.slide{
width:300px;
margin:0 15px;
position:relative;
flex-shrink:0;
}

.slide img{
width:100%;
border-radius:15px;
}

/* LINK PREKO SLIKE */

.slide a{
position:absolute;
bottom:10px;
left:10px;
background:rgba(0,0,0,0.7);
color:white;
padding:6px 12px;
border-radius:6px;
font-size:14px;
text-decoration:none;
}

/* ANIMACIJA */




/* ANIMACIJA */

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* MOBILE */

@media(max-width:768px){

.slide{
min-width:260px;
height:180px;
}

.section-title{
font-size:30px;
}

}

@media(max-width:900px){

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0f172a;
flex-direction:column;
text-align:center;
display:none;
padding:20px 0;
}

.nav-links.show{
display:flex;
}

.hamburger{
display:flex;
}

.hero-grid,
.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:32px;
}

}

/* STICKY BUTTONS */

.phone-sticky,
.whatsapp-sticky{

position:fixed;

right:20px;

width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

color:white;
font-size:22px;

z-index:999;

box-shadow:0 6px 20px rgba(0,0,0,0.35);

transition:0.3s;

}

/* TELEFON */

.phone-sticky{

bottom:95px;

background:#007bff;

}

/* WHATSAPP */

.whatsapp-sticky{

bottom:20px;

background:#25d366;

}

/* HOVER */

.phone-sticky:hover,
.whatsapp-sticky:hover{

transform:scale(1.1);

}

.whatsapp-sticky{
bottom:20px;
background:#25d366;
box-shadow:0 0 20px rgba(37,211,102,0.6);
}




/* ======================
   IZDVOJENI RADOVI
====================== */

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.7;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.work-card {
  position: relative;
  max-width: 350px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.work-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* OVERLAY */
.work-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.work-overlay h3 {
  margin-bottom: 10px;
}

/* HOVER EFEKT */
.work-card:hover img {
  transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .featured-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ======================
   CTA SEKCIJA
====================== */

.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: #0f172a; /* tamna pozadina (ili tvoja) */
  color: #fff;
}

.cta-features {
  margin-bottom: 30px;
}

.cta-features p {
  margin: 8px 0;
  font-size: 18px;
}

.cta-main {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* GUMB */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-main {
    font-size: 24px;
  }
}

/* KARTICE */

.pricing {
  padding: 80px 20px;
  text-align: center;
  background:radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%);
}

.pricing .title {
  font-size: 32px;
  margin-bottom: 10px;
}

.pricing .subtitle {
  color: #666;
  margin-bottom: 50px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}



.card:hover {
  transform: translateY(-8px);
}

.card h2 {
  margin-bottom: 10px;
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.card ul li {
  margin: 10px 0;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

/* POPULARNI PAKET */
.popular {
  border: 2px solid #007bff;
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #007bff;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .popular {
    transform: scale(1);
  }
}

/* FOOTER */
footer p {
    text-align: center;
    width: 100%;
}

.process-section {
    padding: 80px 0;
    background-color: radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%); /* Prilagodi pozadini svoje stranice */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title span {
    color: #007bff; /* Tvoja primarna boja, npr. plava */
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 123, 255, 0.1); /* Transparentna verzija tvoje boje */
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.process-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responzivnost za manje ekrane */
@media (max-width: 768px) {
    .process-section {
        padding: 50px 20px;
    }
}

/* Recenzije */

.reviews-section {
    padding: 80px 0;
    background-color: radial-gradient(circle, rgba(0,200,255,0.2), transparent 70%); /* Lagani kontrast u odnosu na bijelu pozadinu */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    border-color: #007bff; /* Tvoja plava boja */
}

.stars {
    color: #ffc107; /* Zlatna boja za zvjezdice */
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    color: #222;
}

.client-info span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Prilagodba za mobitele */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}