/* GLOBAL */
*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Montserrat',sans-serif;background:#0f0f0f;color:#b5b5b5;}

/* SIDEBAR */
.sidebar{position:fixed;left:0;top:0;width:360px;height:100vh;background:#0b0b0b;padding:40px 30px;display:flex;flex-direction:column;z-index:1000;overflow-y:auto;}
.logo{margin-top:20px;margin-bottom:40px;text-align:center;}
.logo span{font-family:'Playfair Display',serif;font-size:26px;letter-spacing:3px;color:#c9a24d;text-align:center;display:block;}
.main-menu{display:flex;flex-direction:column;gap:18px;margin:auto 0;align-items:center;}
.main-menu a{display:block;font-family:'Poppins',sans-serif;font-size:16px;letter-spacing:1.5px;color:#b5b5b5;text-align:center;text-decoration:none;transition:.3s;}
.main-menu a:hover{color:#c9a24d;}
.sidebar-footer{margin-top:auto;display:flex;flex-direction:column;align-items:center;gap:15px;padding-top:30px;}
.sidebar-footer .social-icons a{color:#b5b5b5;font-size:20px;margin:0 8px;transition:.3s;}
.sidebar-footer .social-icons a:hover{color:#c9a24d;}
.sidebar-footer .copyright{font-size:12px;color:#777;letter-spacing:1px;text-align:center;}

/* HAMBURGER MENI - Prikazuje se samo na mobilnom */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1002;
  width: 50px;
  height: 50px;
  background: #0b0b0b;
  border: 2px solid #c9a24d;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: #c9a24d;
  transform: scale(1.05);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #c9a24d;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger:hover span {
  background: #0b0b0b;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* OVERLAY ZA MOBILNI */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Sprečava skrolovanje kada je meni otvoren */
body.menu-open {
  overflow: hidden;
}


/* CONTENT */
.content{margin-left:360px;padding:0;}

/* SLIDER */
.hero-slider{
  position:relative;
  width:100%;
  max-width:calc(100% - 360px);
  margin-left:360px;
  overflow:hidden;
  height:500px;
}

.slides-container{
  display:flex;
  width:100%;
  height:100%;
  transition:transform 1s ease-in-out;
}

.slide{
  min-width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  position:relative;
}

.slide::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  z-index:1;
}

.slide-content{position:absolute;bottom:25%;left:8%;max-width:600px;color:#fff;z-index:2;}
.slide-content h1{font-family:'Playfair Display',serif;font-size:clamp(42px,5vw,68px);margin-bottom:15px;font-weight:600;}
.slide-content p{font-size:20px;margin-bottom:30px;color:#e0e0e0;}
.btn{padding:16px 40px;border:2px solid #c9a24d;color:#c9a24d;text-decoration:none;transition:.3s;display:inline-block;font-weight:500;letter-spacing:1px;}
.btn:hover{background:#c9a24d;color:#000;}

/* SLIDER ARROWS */
.slider-arrow {
  position: absolute;
  bottom: 30px;
  transform: none;
  width: 55px;
  height: 55px;
  background: rgba(201, 162, 77, 0.95);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #c9a24d;
  transform: scale(1.15);
  box-shadow: 0 5px 20px rgba(201, 162, 77, 0.4);
}

.slider-arrow.prev-arrow {
  left: 30px;
}

.slider-arrow.next-arrow {
  right: 30px;
}

/* SEKCIJE */
.section{
  padding:80px 60px;
  margin-left:360px;
}

.section-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,4vw,48px);
  color:#fff;
  margin-bottom:20px;
  font-weight:600;
}

.section-subtitle{
  font-size:18px;
  color:#b5b5b5;
  margin-bottom:50px;
  line-height:1.6;
  max-width:800px;
}

/* O NAMA SEKCIJA */
.about-section{
  background:#0b0b0b;
}

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

.about-text p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:20px;
  color:#b5b5b5;
}

.about-image{
  width:100%;
  height:400px;
  background-size:cover;
  background-position:center;
  border-radius:8px;
}

/* USLUGE SEKCIJE */
.service-section{
  background:#0f0f0f;
}

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

.service-grid.reverse{
  direction:rtl;
}

.service-grid.reverse > *{
  direction:ltr;
}

.service-content h3{
  font-family:'Playfair Display',serif;
  font-size:32px;
  color:#c9a24d;
  margin-bottom:20px;
}

.service-content p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:15px;
  color:#b5b5b5;
}

.service-content ul{
  list-style:none;
  margin:20px 0;
}

.service-content ul li{
  padding:8px 0;
  padding-left:30px;
  position:relative;
  color:#b5b5b5;
}

.service-content ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:#c9a24d;
  font-weight:bold;
}

.service-image{
  width:100%;
  height:450px;
  background-size:cover;
  background-position:center;
  border-radius:8px;
}

/* RADOVI SEKCIJA */
.radovi-section{
  background:#0b0b0b;
}

.radovi-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.rad-card{
  background:#151515;
  border-radius:8px;
  overflow:hidden;
  transition:.3s;
  cursor:pointer;
}

.rad-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(201,162,77,0.2);
}

.rad-image{
  width:100%;
  height:250px;
  background-size:cover;
  background-position:center;
}

.rad-content{
  padding:25px;
}

.rad-content h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  color:#fff;
  margin-bottom:10px;
}

.rad-content p{
  font-size:14px;
  color:#999;
  line-height:1.6;
}

/* KONTAKT SEKCIJA */
.kontakt-section{
  background:#0f0f0f;
}

.kontakt-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

.kontakt-info{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.kontakt-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
}

.kontakt-icon{
  width:50px;
  height:50px;
  background:#c9a24d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:22px;
  flex-shrink:0;
}

.kontakt-text h3{
  font-size:20px;
  color:#fff;
  margin-bottom:8px;
}

.kontakt-text p{
  color:#b5b5b5;
  font-size:16px;
}

.kontakt-text a{
  color:#c9a24d;
  text-decoration:none;
  transition:.3s;
}

.kontakt-text a:hover{
  color:#fff;
}

.kontakt-form{
  background:#151515;
  padding:40px;
  border-radius:8px;
}

.form-group{
  margin-bottom:25px;
}

.form-group label{
  display:block;
  color:#fff;
  margin-bottom:8px;
  font-size:14px;
  letter-spacing:1px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:15px;
  background:#0f0f0f;
  border:1px solid #333;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  border-radius:4px;
  transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#c9a24d;
}

.form-group textarea{
  resize:vertical;
  min-height:120px;
}

.submit-btn{
  width:100%;
  padding:16px;
  background:#c9a24d;
  border:none;
  color:#000;
  font-family:'Montserrat',sans-serif;
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  cursor:pointer;
  border-radius:4px;
  transition:.3s;
}

.submit-btn:hover{
  background:#b8913c;
}

/* MOBILE */
@media(max-width:1200px){
  .sidebar{width:280px;}
  .content{margin-left:280px;}
  .hero-slider{margin-left:280px;max-width:calc(100% - 280px);}
  .page-hero{margin-left:280px;max-width:calc(100% - 280px);}
  .section{margin-left:280px;padding:60px 40px;}
}

@media(max-width:900px){
  /* SIDEBAR - sakriva se i prikazuje preko hamburger menija */
  .sidebar{
    position:fixed;
    left:-100%;
    top:0;
    width:280px;
    height:100vh;
    z-index:1001;
    transition:left 0.3s ease;
  }
  
  .sidebar.active{
    left:0;
  }
  
  /* HAMBURGER dugme se prikazuje */
  .hamburger{
    display:flex !important;
  }
  
  /* HERO slider FULLSCREEN na mobilnom */
  .hero-slider{
    margin-left:0;
    width:100%;
    max-width:100%;
    height:100vh;
  }
  
  .slider-arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
    bottom: 80px;
  }
  
  .slider-arrow.prev-arrow {
    left: 20px;
  }
  
  .slider-arrow.next-arrow {
    right: 20px;
  }
  
  .page-hero{
    margin-left:0;
    max-width:100%;
    height:300px;
  }
  
  .section{
    margin-left:0;
    padding:50px 30px;
  }
  
  .content{
    margin-left:0;
  }
  
  /* GRID layouts prebacuju se na jednu kolonu */
  .about-content,
  .service-grid,
  .kontakt-grid,
  .kontakt-page-grid,
  .two-column-content{
    grid-template-columns:1fr;
    gap:40px;
  }
  
  .radovi-grid{
    grid-template-columns:1fr 1fr;
  }
  
  .service-grid.reverse{
    direction:ltr;
  }
  
  /* VALUES i PROCESS u 2 kolone */
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  .process-steps{
    grid-template-columns:repeat(2,1fr);
  }
  
  /* COVERAGE u 2 kolone */
  .coverage-grid{
    grid-template-columns:repeat(2,1fr);
  }
  
  /* FAQ u jednu kolonu */
  .faq-grid{
    grid-template-columns:1fr;
  }
  
  /* KONTAKT forma */
  .form-row{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .section{padding:40px 20px;}
  
  /* HERO slider */
  .hero-slider{height:350px;}
  .slide-content{left:5%;bottom:15%;max-width:90%;}
  .slide-content h1{font-size:32px;}
  .slide-content p{font-size:16px;margin-bottom:20px;}
  .btn{padding:12px 30px;font-size:14px;}
  
  /* PAGE HERO */
  .page-hero{height:250px;}
  .page-hero-content h1{font-size:36px;}
  .page-hero-content p{font-size:16px;}
  
  /* HAMBURGER manji */
  .hamburger{
    width:45px;
    height:45px;
    top:15px;
    left:15px;
  }
  
  .hamburger span{
    width:24px;
  }
  
  /* SIDEBAR na mobilnom zauzima celu širinu */
  .sidebar{
    width:85%;
    max-width:320px;
  }
  
  /* GRIDS svi u jednu kolonu */
  .radovi-grid,
  .values-grid,
  .process-steps,
  .coverage-grid{
    grid-template-columns:1fr;
  }
  
  /* SERVICE images */
  .service-image,
  .about-image{
    height:300px;
  }
  
  /* LOGO manji */
  .logo svg{
    width:140px;
    height:80px;
  }
  
  /* KONTAKT items */
  .kontakt-item,
  .kontakt-item-large{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  
  /* CTA sekcija */
  .cta-section{
    padding:40px 20px;
  }
  
  .cta-section h2{
    font-size:28px;
  }
  
  .cta-section p{
    font-size:16px;
  }
}

/* ===== STRANICE - DODATNI STILOVI ===== */

/* PAGE HERO */
.page-hero{
  position:relative;
  width:100%;
  max-width:calc(100% - 360px);
  margin-left:360px;
  height:350px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
}

.page-hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:1;
}

.page-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.page-hero-content h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,6vw,72px);
  margin-bottom:15px;
  font-weight:600;
}

.page-hero-content p{
  font-size:20px;
  color:#e0e0e0;
}

/* CONTENT WRAPPER */
.content-wrapper{
  max-width:1400px;
  margin:0 auto;
}

.content-section{
  background:#0f0f0f;
}

/* INTRO TEXT */
.intro-text{
  text-align:center;
  max-width:900px;
  margin:0 auto 60px;
}

.lead-text{
  font-size:18px;
  line-height:1.8;
  color:#b5b5b5;
  margin-top:20px;
}

.center{
  text-align:center;
}

.center-text{
  text-align:center;
  max-width:800px;
  margin:0 auto;
}

/* TWO COLUMN CONTENT */
.two-column-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  margin:60px 0;
}

.column h3{
  font-family:'Playfair Display',serif;
  font-size:28px;
  color:#c9a24d;
  margin-bottom:20px;
}

.column p{
  font-size:16px;
  line-height:1.8;
  color:#b5b5b5;
  margin-bottom:20px;
}

/* VALUES SECTION */
.values-section{
  margin:80px 0;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.value-card{
  background:#151515;
  padding:40px 30px;
  border-radius:8px;
  text-align:center;
  transition:.3s;
}

.value-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(201,162,77,0.2);
}

.value-icon{
  width:70px;
  height:70px;
  background:#c9a24d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  font-size:32px;
  color:#000;
}

.value-card h3{
  font-size:20px;
  color:#fff;
  margin-bottom:15px;
}

.value-card p{
  font-size:14px;
  line-height:1.6;
  color:#999;
}

/* PROCESS SECTION */
.process-section{
  margin:80px 0;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:50px;
}

.step{
  background:#151515;
  padding:30px;
  border-radius:8px;
  position:relative;
}

.step-number{
  font-family:'Playfair Display',serif;
  font-size:48px;
  color:#c9a24d;
  opacity:0.3;
  margin-bottom:15px;
}

.step h3{
  font-size:20px;
  color:#fff;
  margin-bottom:15px;
}

.step p{
  font-size:14px;
  line-height:1.6;
  color:#999;
}

/* COVERAGE SECTION */
.coverage-section{
  margin:80px 0;
}

.coverage-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.coverage-item{
  background:#151515;
  padding:20px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:15px;
}

.coverage-item i{
  color:#c9a24d;
  font-size:24px;
}

.coverage-item span{
  font-size:16px;
  color:#b5b5b5;
}

/* CTA SECTION */
.cta-section{
  background:#151515;
  padding:60px;
  border-radius:8px;
  text-align:center;
  margin:80px 0 0;
}

.cta-section h2{
  font-family:'Playfair Display',serif;
  font-size:36px;
  color:#fff;
  margin-bottom:15px;
}

.cta-section p{
  font-size:18px;
  color:#b5b5b5;
  margin-bottom:30px;
}

/* KONTAKT PAGE */
.kontakt-page-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  margin-top:50px;
}

.kontakt-info-full{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.kontakt-item-large{
  display:flex;
  gap:20px;
  align-items:flex-start;
  background:#151515;
  padding:30px;
  border-radius:8px;
}

.info-note{
  display:block;
  font-size:14px;
  color:#777;
  margin-top:10px;
}

.social-links-page{
  background:#151515;
  padding:30px;
  border-radius:8px;
}

.social-links-page h3{
  color:#fff;
  margin-bottom:20px;
  font-size:20px;
}

.social-icons-page{
  display:flex;
  gap:15px;
}

.social-icons-page a{
  width:50px;
  height:50px;
  background:#c9a24d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#000;
  font-size:22px;
  transition:.3s;
}

.social-icons-page a:hover{
  background:#b8913c;
  transform:scale(1.1);
}

.kontakt-form-wrapper{
  background:#151515;
  padding:40px;
  border-radius:8px;
}

.kontakt-form-wrapper h3{
  font-size:28px;
  color:#fff;
  margin-bottom:15px;
}

.form-description{
  color:#999;
  margin-bottom:30px;
  line-height:1.6;
}

.kontakt-form-page{}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.kontakt-form-page select{
  width:100%;
  padding:15px;
  background:#0f0f0f;
  border:1px solid #333;
  color:#fff;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  border-radius:4px;
  transition:.3s;
}

.kontakt-form-page select:focus{
  outline:none;
  border-color:#c9a24d;
}

/* MAP SECTION */
.map-section{
  margin:80px 0;
}

.map-container{
  border-radius:8px;
  overflow:hidden;
  margin-top:40px;
}

/* FAQ SECTION */
.faq-section{
  margin:80px 0 0;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  margin-top:50px;
}

.faq-item{
  background:#151515;
  padding:30px;
  border-radius:8px;
}

.faq-item h3{
  font-size:18px;
  color:#c9a24d;
  margin-bottom:15px;
}

.faq-item p{
  font-size:15px;
  line-height:1.7;
  color:#b5b5b5;
}

/* GALERIJA */
.gallery-filter{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:50px 0;
  flex-wrap:wrap;
}

.filter-btn{
  padding:12px 30px;
  background:#151515;
  border:1px solid #333;
  color:#b5b5b5;
  font-family:'Montserrat',sans-serif;
  font-size:14px;
  cursor:pointer;
  border-radius:4px;
  transition:.3s;
  letter-spacing:1px;
}

.filter-btn:hover{
  border-color:#c9a24d;
  color:#c9a24d;
}

.filter-btn.active{
  background:#c9a24d;
  border-color:#c9a24d;
  color:#000;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}

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

.gallery-image{
  width:100%;
  height:350px;
  background-size:cover;
  background-position:center;
  transition:.3s;
}

.gallery-item:hover .gallery-image{
  transform:scale(1.1);
}

.gallery-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(to top,rgba(0,0,0,0.9),rgba(0,0,0,0.3));
  display:flex;
  align-items:flex-end;
  padding:30px;
  opacity:0;
  transition:.3s;
}

.gallery-content h3{
  font-size:20px;
  color:#fff;
  margin-bottom:5px;
}

.gallery-content p{
  font-size:14px;
  color:#b5b5b5;
  margin-bottom:10px;
}

.gallery-category{
  display:inline-block;
  padding:5px 15px;
  background:#c9a24d;
  color:#000;
  font-size:12px;
  border-radius:4px;
  letter-spacing:1px;
}

/* STATS SECTION */
.stats-section{
  margin:80px 0;
  background:#151515;
  padding:60px;
  border-radius:8px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  margin-top:50px;
}

.stat-item{
  text-align:center;
}

.stat-number{
  font-family:'Playfair Display',serif;
  font-size:48px;
  color:#c9a24d;
  margin-bottom:10px;
  font-weight:600;
}

.stat-label{
  font-size:16px;
  color:#b5b5b5;
}

/* SERVICE DETAIL PAGE */
.service-detail-grid{
  display:grid;
  grid-template-columns:1fr 350px;
  gap:60px;
  margin-top:50px;
}

.detail-content h3{
  font-family:'Playfair Display',serif;
  font-size:32px;
  color:#c9a24d;
  margin:40px 0 20px;
}

.detail-content h3:first-child{
  margin-top:0;
}

.detail-content p{
  font-size:16px;
  line-height:1.8;
  color:#b5b5b5;
  margin-bottom:20px;
}

.features-list{
  display:flex;
  flex-direction:column;
  gap:25px;
  margin:30px 0;
}

.feature-item{
  display:flex;
  gap:20px;
  align-items:flex-start;
  background:#151515;
  padding:25px;
  border-radius:8px;
}

.feature-item i{
  color:#c9a24d;
  font-size:24px;
  flex-shrink:0;
  margin-top:5px;
}

.feature-item h4{
  font-size:18px;
  color:#fff;
  margin-bottom:10px;
}

.feature-item p{
  font-size:15px;
  color:#b5b5b5;
  line-height:1.7;
  margin:0;
}

.benefits-list,
.tips-list,
.safety-list,
.maintenance-list{
  list-style:none;
  margin:20px 0;
}

.benefits-list li,
.tips-list li,
.safety-list li,
.maintenance-list li{
  padding:12px 0 12px 35px;
  position:relative;
  color:#b5b5b5;
  line-height:1.7;
}

.benefits-list li::before,
.tips-list li::before,
.safety-list li::before,
.maintenance-list li::before{
  content:'✓';
  position:absolute;
  left:0;
  color:#c9a24d;
  font-weight:bold;
  font-size:18px;
}

.applications-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
  margin:30px 0;
}

.application-item{
  background:#151515;
  padding:20px;
  border-radius:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
}

.application-item i{
  font-size:32px;
  color:#c9a24d;
}

.application-item span{
  font-size:14px;
  color:#b5b5b5;
}

.tech-specs{
  background:#151515;
  padding:30px;
  border-radius:8px;
  margin:30px 0;
}

.spec-item{
  padding:15px 0;
  border-bottom:1px solid #222;
  color:#b5b5b5;
  font-size:15px;
}

.spec-item:last-child{
  border-bottom:none;
}

.spec-item strong{
  color:#c9a24d;
}

.process-steps-detail{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin:30px 0;
}

.step-detail{
  display:flex;
  gap:20px;
  background:#151515;
  padding:25px;
  border-radius:8px;
}

.step-num{
  width:50px;
  height:50px;
  background:#c9a24d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:bold;
  color:#000;
  flex-shrink:0;
}

.step-info h4{
  font-size:18px;
  color:#fff;
  margin-bottom:10px;
}

.step-info p{
  font-size:15px;
  color:#b5b5b5;
  line-height:1.7;
  margin:0;
}

.design-styles{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin:30px 0;
}

.style-card{
  background:#151515;
  padding:25px;
  border-radius:8px;
}

.style-card h4{
  font-size:18px;
  color:#c9a24d;
  margin-bottom:12px;
}

.style-card p{
  font-size:15px;
  color:#b5b5b5;
  line-height:1.7;
  margin:0;
}

.comparison-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin:30px 0;
}

.comparison-item{
  background:#151515;
  padding:30px;
  border-radius:8px;
}

.comparison-item h4{
  font-size:20px;
  color:#c9a24d;
  margin-bottom:20px;
}

.comparison-item p{
  font-size:15px;
  color:#fff;
  margin:15px 0 10px;
}

.comparison-item ul{
  list-style:none;
  margin:0;
}

.comparison-item li{
  padding:8px 0 8px 25px;
  position:relative;
  color:#b5b5b5;
  font-size:14px;
}

.comparison-item li::before{
  content:'•';
  position:absolute;
  left:0;
  color:#c9a24d;
  font-size:20px;
}

.design-options{
  background:#151515;
  padding:30px;
  border-radius:8px;
  margin:30px 0;
}

.design-options h4{
  font-size:18px;
  color:#c9a24d;
  margin:20px 0 15px;
}

.design-options h4:first-child{
  margin-top:0;
}

.design-options ul{
  list-style:none;
  margin:15px 0;
}

.design-options li{
  padding:8px 0 8px 25px;
  position:relative;
  color:#b5b5b5;
}

.design-options li::before{
  content:'▸';
  position:absolute;
  left:0;
  color:#c9a24d;
}

/* SIDEBAR */
.detail-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-box{
  background:#151515;
  padding:30px;
  border-radius:8px;
}

.sidebar-box h3{
  font-size:20px;
  color:#fff;
  margin-bottom:15px;
}

.sidebar-box p{
  font-size:14px;
  color:#b5b5b5;
  margin-bottom:20px;
  line-height:1.6;
}

.btn-outline{
  display:inline-block;
  padding:12px 30px;
  border:2px solid #c9a24d;
  color:#c9a24d;
  text-decoration:none;
  transition:.3s;
  text-align:center;
  font-size:14px;
  letter-spacing:1px;
  border-radius:4px;
}

.btn-outline:hover{
  background:#c9a24d;
  color:#000;
}

.price-list{
  list-style:none;
  margin:20px 0;
}

.price-list li{
  padding:12px 0;
  border-bottom:1px solid #222;
  color:#b5b5b5;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.price-list li:last-child{
  border-bottom:none;
}

.price-list strong{
  color:#c9a24d;
}

.price-note{
  font-size:12px !important;
  color:#777 !important;
  font-style:italic;
  margin-top:15px !important;
}

.faq-mini p{
  margin-bottom:15px;
  padding-bottom:15px;
  border-bottom:1px solid #222;
}

.faq-mini p:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}

.faq-mini strong{
  color:#fff;
  display:block;
  margin-bottom:5px;
}

.color-samples{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:15px;
}

.color-box{
  padding:15px;
  border-radius:4px;
  text-align:center;
  font-size:12px;
  color:#fff;
}

.combo-list p{
  margin-bottom:20px;
  padding:15px;
  background:#0f0f0f;
  border-radius:4px;
  line-height:1.6;
}

.combo-list p:last-child{
  margin-bottom:0;
}

.combo-list strong{
  color:#c9a24d;
  display:block;
  margin-bottom:8px;
}

/* RESPONSIVE - PAGES */
@media(max-width:1200px){
  .page-hero{
    margin-left:280px;
    max-width:calc(100% - 280px);
  }
}

@media(max-width:900px){
  .page-hero{
    margin-left:0;
    max-width:100%;
    height:300px;
  }
  
  .two-column-content,
  .service-detail-grid,
  .kontakt-page-grid,
  .comparison-grid,
  .design-styles{
    grid-template-columns:1fr;
  }
  
  .values-grid,
  .process-steps{
    grid-template-columns:repeat(2,1fr);
  }
  
  .coverage-grid,
  .faq-grid,
  .stats-grid,
  .applications-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }
  
  .form-row{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .values-grid,
  .process-steps{
    grid-template-columns:1fr;
  }
}

/* ===== NOVA POČETNA STRANICA ===== */

/* HOME SERVICE SEKCIJE */
.home-service {
  padding: 100px 0;
  margin-left: 360px;
}

.home-service.white-bg {
  background: #ffffff;
}

.home-service.dark-bg {
  background: #0f0f0f;
}

.service-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-container.reverse {
  direction: rtl;
}

.service-container.reverse > * {
  direction: ltr;
}

.service-image-side {}

.service-img {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.service-img:hover {
  transform: scale(1.02);
}

.service-text-side {
  padding: 20px 0;
}

.service-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a24d;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}

.white-bg .service-label {
  color: #c9a24d;
}

.dark-bg .service-label {
  color: #c9a24d;
}

.service-text-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.white-bg .service-text-side h2 {
  color: #1a1a1a;
}

.dark-bg .service-text-side h2 {
  color: #ffffff;
}

.service-text-side p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.white-bg .service-text-side p {
  color: #555;
}

.dark-bg .service-text-side p {
  color: #b5b5b5;
}

.service-features {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}

.white-bg .service-features li {
  color: #333;
}

.dark-bg .service-features li {
  color: #b5b5b5;
}

.service-features li i {
  color: #c9a24d;
  font-size: 18px;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-modern:hover {
  background: #b8913c;
  transform: translateX(5px);
}

.btn-modern i {
  transition: transform 0.3s ease;
}

.btn-modern:hover i {
  transform: translateX(5px);
}

/* TESTIMONIALS SEKCIJA */
.testimonials-section {
  padding: 100px 0;
  background: #f8f8f8;
  margin-left: 360px;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-title-center {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-subtitle-center {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.testimonials-slider {
  position: relative;
  padding: 0 50px;
}

.testimonials-track {
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc((100% - 60px) / 3);
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.stars {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.stars i {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #999;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #c9a24d;
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonial-nav:hover {
  background: #b8913c;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* CTA HOME SEKCIJA */
.cta-home {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  margin-left: 360px;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 60px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  color: #b5b5b5;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cta.primary {
  background: #c9a24d;
  color: #000;
}

.btn-cta.primary:hover {
  background: #b8913c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.3);
}

.btn-cta.secondary {
  background: transparent;
  color: #c9a24d;
  border: 2px solid #c9a24d;
}

.btn-cta.secondary:hover {
  background: #c9a24d;
  color: #000;
}

/* RESPONSIVE - NOVA POČETNA */
@media (max-width: 1200px) {
  .home-service,
  .testimonials-section,
  .cta-home {
    margin-left: 280px;
  }
  
  .hero-slider{
    margin-left:280px;
    max-width:calc(100% - 280px);
  }
}

@media (max-width: 900px) {
  /* SVE SEKCIJE na punu širinu */
  .home-service,
  .testimonials-section,
  .cta-home {
    margin-left: 0;
    padding: 60px 0;
  }
  
  /* HERO slider FULLSCREEN */
  .hero-slider{
    margin-left:0;
    max-width:100%;
    height:100vh;
  }
  
  .service-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
  }
  
  .service-container.reverse {
    direction: ltr;
  }
  
  .service-img {
    height: 350px;
  }
  
  .service-label{
    font-size:12px;
  }
  
  .service-text-side h2{
    font-size:32px;
  }
  
  .testimonial-card {
    min-width: 100%;
  }
  
  .testimonials-slider {
    padding: 0 40px;
  }
  
  .testimonials-container{
    padding:0 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-content{
    padding:0 30px;
  }
}

@media (max-width: 600px) {
  .home-service {
    padding: 50px 0;
  }
  
  .hero-slider{
    height:100vh;
  }
  
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
    bottom: 70px;
  }
  
  .slider-arrow.prev-arrow {
    left: 15px;
  }
  
  .slider-arrow.next-arrow {
    right: 15px;
  }
  
  .service-container {
    padding: 0 20px;
    gap:35px;
  }
  
  .service-img {
    height: 280px;
  }
  
  .service-text-side h2{
    font-size:28px;
    margin-bottom:15px;
  }
  
  .service-text-side p{
    font-size:15px;
    margin-bottom:20px;
  }
  
  .service-features{
    margin:20px 0;
  }
  
  .service-features li{
    font-size:14px;
    padding:8px 0;
  }
  
  .btn-modern{
    padding:14px 30px;
    font-size:14px;
  }
  
  .testimonials-section{
    padding:60px 0;
  }
  
  .testimonials-container {
    padding: 0 20px;
  }
  
  .testimonials-slider {
    padding: 0 30px;
  }
  
  .testimonial-nav {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .testimonial-card{
    padding:30px 25px;
  }
  
  .testimonial-text{
    font-size:15px;
  }
  
  .cta-home{
    padding:60px 0;
  }
  
  .cta-content {
    padding: 0 20px;
  }
  
  .cta-content h2{
    font-size:28px;
  }
  
  .cta-content p{
    font-size:16px;
  }
}

@media (max-width: 480px) {
  .hero-slider{
    height:100vh;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 60px;
  }
  
  .slider-arrow.prev-arrow {
    left: 10px;
  }
  
  .slider-arrow.next-arrow {
    right: 10px;
  }
  
  .slide-content h1{
    font-size:28px;
  }
  
  .slide-content p{
    font-size:14px;
  }
  
  .service-img{
    height:250px;
  }
  
  .service-text-side h2{
    font-size:24px;
  }
  
  .section-title{
    font-size:28px;
  }
  
  .section-title-center{
    font-size:28px;
  }
}

/* DODATNI RESPONSIVE STILOVI */
@media (max-width: 900px) {
  /* GALERIJA - 2 kolone */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .gallery-image {
    height: 280px;
  }
  
  /* STATS - 2 kolone */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stats-section {
    padding: 50px 30px;
  }
  
  /* SERVICE DETAIL SIDEBAR ide ispod */
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .detail-sidebar {
    order: 2;
  }
  
  /* FILTER buttons manji padding */
  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  /* GALERIJA - 1 kolona */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-image {
    height: 250px;
  }
  
  .gallery-overlay {
    padding: 20px;
  }
  
  .gallery-content h3 {
    font-size: 18px;
  }
  
  .gallery-filter {
    gap: 10px;
    margin: 30px 0;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* STATS - 1 kolona */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stats-section {
    padding: 40px 20px;
    margin: 60px 0;
  }
  
  .stat-number {
    font-size: 38px;
  }
  
  .stat-label {
    font-size: 15px;
  }
  
  /* KONTAKT forma wrapper */
  .kontakt-form-wrapper {
    padding: 30px 20px;
  }
  
  .kontakt-item-large {
    padding: 25px 20px;
  }
  
  /* MAP */
  .map-section {
    margin: 60px 0;
  }
  
  /* FAQ */
  .faq-section {
    margin: 60px 0 0;
  }
  
  .faq-item {
    padding: 25px 20px;
  }
  
  /* DETAIL CONTENT */
  .detail-content h3 {
    font-size: 26px;
    margin: 35px 0 18px;
  }
  
  .feature-item {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item i {
    margin-top: 0;
  }
  
  /* SIDEBAR BOXES */
  .sidebar-box {
    padding: 25px 20px;
  }
  
  /* CTA sekcija manja margina */
  .cta-section {
    margin: 60px 0 0;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  /* Extra mali mobilni */
  .hamburger {
    width: 42px;
    height: 42px;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  
  .gallery-image {
    height: 220px;
  }
  
  .filter-btn {
    padding: 8px 12px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .detail-content h3 {
    font-size: 24px;
  }
  
  .detail-content p {
    font-size: 15px;
  }
}


