/* Strujora — glavna stylesheet datoteka */
:root{
  --navy-950:#081530;
  --navy-900:#0b1c3d;
  --navy-800:#13294f;
  --navy-700:#1b3560;
  --navy-600:#2a3f66;
  --yellow:#ffc832;
  --yellow-light:#ffd863;
  --yellow-dark:#e6ab00;
  --ink:#10182b;
  --text-1:#3a4150;
  --text-2:#5c6470;
  --text-3:#9aa2b1;
  --text-inv:#c7d0e2;
  --text-inv-2:#8fa0c2;
  --bg:#f6f7fb;
  --bg-2:#eef0f5;
  --border:#e4e7ee;
  --border-2:#d6dae4;
  --font-head:'Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
  --font-body:'Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Arial,sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  min-height:100vh;
}
a{color:var(--navy-800);text-decoration:none;}
a:hover{color:var(--yellow-dark);}
::selection{background:var(--yellow);color:var(--navy-900);}
img{max-width:100%;display:block;}
h1,h2,h3{font-family:var(--font-head);font-weight:800;margin:0;}
button{font-family:inherit;}

.container{max-width:1240px;margin:0 auto;padding:0 24px;}
.container-md{max-width:900px;margin:0 auto;padding:0 24px;}
.container-sm{max-width:820px;margin:0 auto;padding:0 24px;}
.container-narrow{max-width:640px;margin:0 auto;padding:0 24px;}

/* ---------- HEADER ---------- */
.site-header{position:sticky;top:0;z-index:40;background:var(--navy-900);border-bottom:3px solid var(--yellow);}
.site-header__inner{max-width:1240px;margin:0 auto;padding:14px 24px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.brand{display:flex;align-items:center;gap:12px;}
.brand__mark{width:30px;height:30px;background:var(--yellow);clip-path:polygon(58% 0%, 8% 56%, 44% 56%, 34% 100%, 92% 38%, 54% 38%);flex-shrink:0;}
.brand__name{font-family:var(--font-head);font-weight:800;font-size:22px;letter-spacing:0.5px;color:#fff;}

.nav{display:flex;gap:4px;flex-wrap:wrap;}
.nav__item{padding:10px 14px;border-radius:2px;font-size:14.5px;font-weight:600;color:var(--text-inv);}
.nav__item:hover{color:var(--yellow);}
.nav__item.is-active{color:var(--yellow);background:rgba(255,200,50,0.1);}

.header-actions{display:flex;align-items:center;gap:14px;}
.call-btn{display:flex;align-items:center;gap:8px;background:var(--yellow);color:var(--navy-900);font-weight:700;padding:10px 16px;border-radius:2px;font-size:15px;}
.call-btn:hover{background:var(--yellow-light);color:var(--navy-900);}
.cart-btn{position:relative;cursor:pointer;padding:8px;background:transparent;border:none;}
.cart-btn__icon{width:24px;height:20px;border:2.5px solid #fff;border-top:none;border-radius:0 0 3px 3px;}
.cart-btn__badge{position:absolute;top:-2px;right:-2px;background:var(--yellow);color:var(--navy-900);font-size:11px;font-weight:800;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;}

.nav-toggle{display:none;background:transparent;border:1px solid var(--navy-600);border-radius:3px;padding:8px 10px;cursor:pointer;}
.nav-toggle span{display:block;width:20px;height:2px;background:#fff;margin:4px 0;}

/* ---------- BUTTONS ---------- */
.btn{display:inline-block;font-weight:700;padding:16px 28px;border-radius:2px;cursor:pointer;font-size:16px;border:none;text-align:center;}
.btn-primary{background:var(--yellow);color:var(--navy-900);}
.btn-primary:hover{background:var(--yellow-light);color:var(--navy-900);}
.btn-outline-white{border:2px solid #fff;color:#fff;background:transparent;}
.btn-outline-white:hover{background:rgba(255,255,255,0.1);color:#fff;}
.btn-outline-navy{border:2px solid var(--navy-900);color:var(--navy-900);background:transparent;padding:12px 26px;font-size:15px;}
.btn-outline-navy:hover{background:var(--navy-900);color:#fff;}
.btn-dark{background:var(--navy-900);color:#fff;font-weight:700;border:none;padding:14px;border-radius:3px;font-size:15.5px;cursor:pointer;}
.btn-dark:hover{background:var(--navy-800);color:#fff;}
.btn-yellow-block{background:var(--yellow);color:var(--navy-900);font-weight:700;border:none;padding:14px;border-radius:3px;font-size:15.5px;cursor:pointer;width:100%;}
.btn-yellow-block:hover{background:var(--yellow-light);}

/* ---------- HERO ---------- */
.hero{background:linear-gradient(135deg,var(--navy-900) 0%,var(--navy-800) 100%);color:#fff;padding:80px 24px 64px;}
.hero__grid{display:grid;grid-template-columns:1.1fr 0.9fr;gap:48px;align-items:center;}
.eyebrow{display:inline-block;background:rgba(255,200,50,0.15);color:var(--yellow);font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;padding:6px 14px;border-radius:2px;margin-bottom:18px;}
.hero h1{font-size:48px;line-height:1.15;margin:0 0 20px;}
.hero p{font-size:18px;line-height:1.6;color:var(--text-inv);max-width:520px;margin:0 0 32px;}
.hero__actions{display:flex;gap:14px;flex-wrap:wrap;}
.hero__media{border:1px solid var(--navy-600);border-radius:8px;height:340px;overflow:hidden;}
.hero__media img{width:100%;height:100%;object-fit:cover;}

/* ---------- STATS ---------- */
.stats{background:var(--navy-900);padding:32px 24px;border-top:1px solid var(--navy-700);}
.stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;}
.stat__num{font-family:var(--font-head);font-size:32px;font-weight:800;color:var(--yellow);}
.stat__label{font-size:14px;color:var(--text-inv);margin-top:4px;}

/* ---------- GENERIC SECTIONS ---------- */
.section{padding:80px 24px;}
.section--tight{padding:64px 24px;}
.section--white{background:#fff;}
.section--bg{background:var(--bg);}
.section--navy{background:var(--navy-900);}
.section-head{text-align:center;margin-bottom:48px;}
.section-kicker{color:var(--yellow-dark);font-weight:700;font-size:14px;letter-spacing:1px;text-transform:uppercase;}
.section-kicker--light{color:var(--yellow);}
.section-head h2{font-size:34px;margin:8px 0 0;color:var(--navy-900);}
.section-head h2.on-navy{color:#fff;}
.section-head p{color:var(--text-inv);font-size:16px;max-width:640px;margin:14px auto 0;}

/* ---------- SERVICES ---------- */
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.service-card{background:var(--bg);border:1px solid var(--border);border-radius:4px;padding:28px 22px;}
.service-card__num{font-family:var(--font-head);font-weight:800;font-size:22px;color:var(--yellow);margin-bottom:10px;}
.service-card__title{font-family:var(--font-head);font-weight:700;font-size:17px;color:var(--navy-900);margin-bottom:8px;}
.service-card__desc{font-size:14.5px;color:var(--text-2);line-height:1.55;}
.services-list{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.service-row{border:1px solid var(--border);border-radius:4px;padding:26px;display:flex;gap:18px;}
.service-row__num{font-family:var(--font-head);font-weight:800;font-size:26px;color:var(--yellow);min-width:44px;}
.service-row__title{font-family:var(--font-head);font-weight:700;font-size:18px;color:var(--navy-900);margin-bottom:6px;}
.service-row__desc{font-size:14.5px;color:var(--text-2);line-height:1.6;margin-bottom:10px;}
.service-row__price{font-weight:700;color:var(--yellow-dark);font-size:14.5px;}

/* ---------- WHY US ---------- */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.why-card__dot{width:14px;height:14px;background:var(--yellow);margin-bottom:14px;}
.why-card__title{font-family:var(--font-head);font-weight:700;font-size:16.5px;color:var(--navy-900);margin-bottom:8px;}
.why-card__desc{font-size:14.5px;color:var(--text-2);line-height:1.55;}

/* ---------- CITIES ---------- */
.cities{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
.city-pill{border:1px solid var(--navy-600);color:var(--text-inv);padding:9px 18px;border-radius:20px;font-size:14.5px;}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.testimonial-card{background:var(--bg);border:1px solid var(--border);border-radius:4px;padding:24px;}
.testimonial-card__stars{color:var(--yellow);font-size:15px;margin-bottom:10px;}
.testimonial-card__text{font-size:14.5px;color:var(--text-1);line-height:1.6;margin-bottom:14px;}
.testimonial-card__name{font-weight:700;font-size:14px;color:var(--navy-900);}

/* ---------- ARTICLES ---------- */
.articles-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.articles-grid--2{grid-template-columns:repeat(2,1fr);gap:24px;max-width:1000px;margin:0 auto;}
.article-card{background:#fff;border:1px solid var(--border);border-radius:4px;overflow:hidden;}
.article-card__img{height:110px;width:100%;object-fit:cover;background:var(--bg-2);}
.articles-grid--2 .article-card__img{height:160px;}
.article-card__body{padding:16px;}
.articles-grid--2 .article-card__body{padding:22px;}
.article-card__date{font-size:12px;color:var(--text-3);margin-bottom:6px;}
.article-card__title{font-family:var(--font-head);font-weight:700;font-size:15px;color:var(--navy-900);line-height:1.35;}
.articles-grid--2 .article-card__title{font-size:19px;margin-bottom:10px;}
.article-card__excerpt{font-size:14.5px;color:var(--text-2);line-height:1.55;}

/* ---------- CTA FORM (home + kontakt) ---------- */
.cta-form-wrap{background:var(--navy-900);border-radius:6px;padding:44px;}
.cta-form-wrap h2{font-size:26px;color:#fff;margin:0 0 6px;}
.cta-form-wrap > p{color:var(--text-inv);font-size:14.5px;margin:0 0 24px;}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.form-grid--single{display:grid;gap:12px;}
.field{padding:12px 14px;border-radius:3px;border:1px solid var(--navy-600);background:var(--navy-800);color:#fff;font-size:14.5px;font-family:inherit;width:100%;}
.field::placeholder{color:var(--text-inv-2);}
.field--light{border:1px solid var(--border-2);background:#fff;color:var(--ink);}
.field--light::placeholder{color:var(--text-3);}
.field-span2{grid-column:span 2;}
textarea.field{min-height:80px;resize:vertical;}
.alert-success{background:rgba(255,200,50,0.15);border:1px solid var(--yellow);color:var(--yellow);padding:16px;border-radius:4px;font-weight:600;}
.alert-success--light{background:rgba(230,171,0,0.12);border:1px solid var(--yellow-dark);color:#8a6600;}
.alert-error{background:rgba(220,53,69,0.1);border:1px solid #dc3545;color:#a71d2a;padding:16px;border-radius:4px;font-weight:600;margin-bottom:14px;}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{background:var(--navy-900);padding:56px 24px;}
.page-hero h1{font-size:38px;color:#fff;margin:8px 0 0;}
.page-hero p{color:var(--text-inv);font-size:16px;max-width:640px;margin:14px 0 0;}

/* ---------- FAQ ---------- */
.faq-item{background:#fff;border:1px solid var(--border);border-radius:4px;margin-bottom:10px;overflow:hidden;}
.faq-item__q{padding:18px 20px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-weight:700;color:var(--navy-900);font-size:15.5px;background:transparent;border:none;width:100%;text-align:left;}
.faq-item__sign{color:var(--yellow-dark);}
.faq-item__a{padding:0 20px 18px;font-size:14.5px;color:var(--text-2);line-height:1.6;display:none;}
.faq-item.is-open .faq-item__a{display:block;}

/* ---------- PRICE TABLE ---------- */
.price-table{border:1px solid var(--border);border-radius:6px;overflow:hidden;max-width:900px;margin:0 auto;}
.price-table__head{display:grid;grid-template-columns:2fr 1fr;background:var(--navy-900);color:#fff;font-weight:700;padding:16px 22px;font-family:var(--font-head);font-size:14.5px;}
.price-table__row{display:grid;grid-template-columns:2fr 1fr;padding:16px 22px;border-top:1px solid var(--border);font-size:14.5px;color:var(--text-1);}
.price-table__price{font-weight:700;color:var(--navy-900);}
.price-note{max-width:900px;margin:20px auto 0;font-size:13.5px;color:var(--text-3);}

/* ---------- SHOP ---------- */
.shop-filters{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:32px;}
.shop-filter{padding:9px 18px;border-radius:20px;font-size:13.5px;font-weight:600;border:1px solid var(--border);background:#fff;color:var(--text-2);cursor:pointer;}
.shop-filter.is-active{border-color:var(--navy-900);background:var(--navy-900);color:#fff;}
.shop-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.product-card{border:1px solid var(--border);border-radius:4px;overflow:hidden;background:#fff;display:flex;flex-direction:column;}
.product-card__img{height:130px;width:100%;object-fit:cover;background:var(--bg-2);}
.product-card__body{padding:16px;display:flex;flex-direction:column;flex:1;}
.product-card__cat{font-size:11.5px;color:var(--yellow-dark);font-weight:700;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px;}
.product-card__name{font-weight:700;font-size:14.5px;color:var(--navy-900);line-height:1.35;margin-bottom:10px;flex:1;}
.product-card__footer{display:flex;justify-content:space-between;align-items:center;}
.product-card__price{font-family:var(--font-head);font-weight:800;font-size:16px;color:var(--navy-900);}
.add-cart-btn{background:var(--yellow);color:var(--navy-900);font-weight:700;font-size:13px;padding:8px 14px;border-radius:2px;cursor:pointer;border:none;}
.add-cart-btn:hover{background:var(--yellow-light);}

/* ---------- ABOUT / TEAM ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;}
.about-grid p{font-size:16px;line-height:1.8;color:var(--text-1);}
.about-media{height:280px;border-radius:4px;overflow:hidden;}
.about-media img{width:100%;height:100%;object-fit:cover;}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.team-card{background:#fff;border:1px solid var(--border);border-radius:4px;padding:24px;text-align:center;}
.team-card__avatar{width:64px;height:64px;border-radius:50%;background:var(--navy-900);color:var(--yellow);font-family:var(--font-head);font-weight:800;font-size:22px;display:flex;align-items:center;justify-content:center;margin:0 auto 14px;}
.team-card__name{font-weight:700;color:var(--navy-900);font-size:15.5px;}
.team-card__role{font-size:13.5px;color:var(--text-3);margin-top:4px;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;}
.contact-media{height:220px;border-radius:4px;overflow:hidden;margin-bottom:24px;}
.contact-media img{width:100%;height:100%;object-fit:cover;}
.contact-info{display:flex;flex-direction:column;gap:14px;font-size:15px;color:var(--text-1);}
.contact-info strong{color:var(--navy-900);}
.contact-form-card{background:var(--bg);border:1px solid var(--border);border-radius:6px;padding:32px;}
.contact-form-card h3{font-size:19px;color:var(--navy-900);margin:0 0 18px;}

/* ---------- LEGAL ---------- */
.legal-page{max-width:820px;margin:0 auto;padding:64px 24px;}
.legal-page h1{font-size:30px;color:var(--navy-900);margin-bottom:20px;}
.legal-page__body{font-size:15px;line-height:1.8;color:var(--text-1);white-space:pre-line;}

/* ---------- BLOG POST ---------- */
.blog-post-hero{background:var(--navy-900);padding:48px 24px;}
.blog-post-hero__back{color:var(--yellow);font-weight:700;font-size:13px;cursor:pointer;margin-bottom:14px;display:inline-block;}
.blog-post-hero__date{font-size:13px;color:var(--text-inv);margin-bottom:8px;}
.blog-post-hero h1{font-size:32px;color:#fff;line-height:1.25;}
.blog-post-media{max-width:760px;margin:0 auto;border-radius:6px;overflow:hidden;margin-top:-1px;}
.blog-post-media img{width:100%;height:340px;object-fit:cover;display:block;}
.blog-post-body{max-width:760px;margin:0 auto;font-size:16px;line-height:1.8;color:#2c3140;white-space:pre-line;padding:48px 24px 80px;}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--navy-950);color:var(--text-inv);padding:56px 24px 28px;}
.site-footer__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:32px;}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.footer-brand__mark{width:22px;height:22px;background:var(--yellow);clip-path:polygon(58% 0%, 8% 56%, 44% 56%, 34% 100%, 92% 38%, 54% 38%);}
.footer-brand__name{font-family:var(--font-head);font-weight:800;font-size:18px;color:#fff;}
.footer-desc{font-size:13.5px;line-height:1.7;color:var(--text-inv-2);max-width:280px;}
.footer-col-title{font-weight:700;color:#fff;margin-bottom:12px;font-size:14.5px;}
.footer-links{display:flex;flex-direction:column;gap:9px;font-size:13.5px;}
.footer-links a{color:var(--text-inv);}
.footer-links a:hover{color:var(--yellow);}
.footer-bottom{max-width:1240px;margin:36px auto 0;border-top:1px solid var(--navy-700);padding-top:20px;font-size:12.5px;color:#5c709a;}

/* ---------- CART DRAWER ---------- */
.cart-overlay{position:fixed;inset:0;background:rgba(8,15,30,0.5);z-index:50;display:none;}
.cart-overlay.is-open{display:block;}
.cart-drawer{position:absolute;right:0;top:0;bottom:0;width:400px;max-width:92vw;background:#fff;padding:28px;overflow-y:auto;}
.cart-drawer__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;}
.cart-drawer__head h3{font-size:20px;color:var(--navy-900);}
.cart-drawer__close{cursor:pointer;font-size:20px;color:var(--text-2);background:none;border:none;}
.cart-empty{text-align:center;padding:60px 0;color:var(--text-3);font-size:14.5px;}
.cart-item{display:flex;gap:14px;padding:14px 0;border-bottom:1px solid var(--bg-2);align-items:center;}
.cart-item__img{width:56px;height:56px;border-radius:3px;object-fit:cover;flex-shrink:0;background:var(--bg-2);}
.cart-item__name{font-weight:700;font-size:13.5px;color:var(--navy-900);line-height:1.3;}
.cart-item__price{font-size:13px;color:var(--text-3);margin-top:3px;}
.qty-control{display:flex;align-items:center;gap:8px;}
.qty-btn{width:24px;height:24px;border:1px solid var(--border-2);border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:13px;background:#fff;}
.cart-total-row{display:flex;justify-content:space-between;font-weight:700;color:var(--navy-900);font-size:16px;margin-bottom:16px;margin-top:20px;}
.cart-checkout-link{background:var(--navy-900);color:#fff;font-weight:700;padding:14px;border-radius:3px;text-align:center;cursor:pointer;border:none;width:100%;font-size:15px;}
.cart-checkout-link:hover{background:var(--navy-800);color:#fff;}
.checkout-summary{display:flex;justify-content:space-between;font-weight:700;color:var(--navy-900);font-size:15.5px;margin:10px 0;padding-top:10px;border-top:1px solid var(--border);}
.checkout-back{text-align:center;font-size:13px;color:var(--text-3);cursor:pointer;margin-top:6px;background:none;border:none;width:100%;}
.checkout-note{font-size:13.5px;color:var(--text-2);margin-top:4px;}
.checkout-done{text-align:center;padding:40px 0;}
.checkout-done__check{font-size:40px;margin-bottom:14px;}
.checkout-done__title{font-family:var(--font-head);font-weight:700;font-size:17px;color:var(--navy-900);margin-bottom:8px;}
.checkout-done__line{font-size:14px;color:var(--text-2);margin-bottom:4px;}
[hidden]{display:none !important;}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;background:var(--navy-900);color:var(--text-inv);padding:18px 24px;z-index:60;display:flex;justify-content:center;}
.cookie-banner__inner{max-width:1100px;width:100%;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;}
.cookie-banner__text{font-size:13.5px;line-height:1.5;}
.cookie-banner__text a{text-decoration:underline;color:var(--yellow);}
.cookie-accept{background:var(--yellow);color:var(--navy-900);font-weight:700;padding:10px 20px;border-radius:3px;cursor:pointer;font-size:13.5px;border:none;}
.cookie-accept:hover{background:var(--yellow-light);}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .hero__grid{grid-template-columns:1fr;}
  .hero__media{height:260px;}
  .services-grid,.why-grid,.testimonials-grid,.articles-grid,.shop-grid{grid-template-columns:repeat(2,1fr);}
  .stats__grid{grid-template-columns:repeat(2,1fr);gap:20px;}
  .services-list{grid-template-columns:1fr;}
  .about-grid,.contact-grid{grid-template-columns:1fr;}
  .site-footer__grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:720px){
  .nav-toggle{display:inline-flex;flex-direction:column;}
  .nav{display:none;width:100%;order:3;flex-direction:column;gap:2px;background:var(--navy-800);border-radius:4px;padding:8px;}
  .nav.is-open{display:flex;}
  .site-header__inner{position:relative;}
  .header-actions{margin-left:auto;}
  .call-btn span:last-child{display:none;}
  .hero h1{font-size:34px;}
  .hero p{font-size:16px;}
  .section-head h2{font-size:26px;}
  .services-grid,.why-grid,.testimonials-grid,.articles-grid,.shop-grid,.services-list,.articles-grid--2{grid-template-columns:1fr;}
  .stats__grid{grid-template-columns:repeat(2,1fr);}
  .team-grid{grid-template-columns:1fr;}
  .site-footer__grid{grid-template-columns:1fr;}
  .form-grid{grid-template-columns:1fr;}
  .field-span2{grid-column:span 1;}
  .cta-form-wrap{padding:28px;}
  .price-table__head,.price-table__row{grid-template-columns:1.4fr 1fr;padding:14px;font-size:13.5px;}
  .cookie-banner__inner{flex-direction:column;align-items:flex-start;}
}
