:root {

  /* brand colors */
  --color-primary: #2f41d1;
  --color-primary-dark: #2433a8;
  --color-text: #222;
  --color-text-light: #666;
  --color-bg: #ffffff;
  --color-panel: #2f3137;

  /* spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;

  /* typography */
  --font-base: system-ui, -apple-system, Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-h1: 3rem;
  --font-size-p: 1.6rem;

  /* layout */
  --radius: 10px;
  --container: 1200px;

}

/* =========================
   Service cards
========================= */
.service-summary--card{
  display:block;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  overflow:hidden;
  height:100%;
  background:#fff;
}

.service-summary--card .service-thumb img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

@media (min-width: 768px){
  .service-summary--card .service-thumb img{
    height:170px;
  }
  
  
}

.service-summary--card .service-content{
  padding:14px;
}

.service-summary--card .service-title{
  font-size:1.1rem;
  margin:0 0 8px 0;
}

.service-summary--card .service-excerpt{
  margin:0;
  color:#666;
  font-size:0.95rem;
  line-height:1.35;
}

/* =========================
   Hero CTA
========================= */
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero-cta .button{
  font-size:1rem;
  padding:12px 22px;
  min-height:44px;
}

/* =========================
   Hero CTA . stronger hierarchy
========================= */

.hero-cta .button{
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Primary CTA . Zatraži ponudu */
/* =========================
   Hero CTA . final hierarchy
========================= */

.hero-cta .button{
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

/* Primary . ZATRAŽI PONUDU */
.hero-cta .button-primary{
  background: #ffffff;//
  border: 1px solid #ffffff;
  color: #1c3ed3;
}

.hero-cta .button-primary:hover,
.hero-cta .button-primary:focus{
  background: #ddf000c2;
  border-color: #f2f4ff;
  color: #001fa6;
  text-decoration: none !important;
}

/* Secondary . desktop default */
.hero-cta .button-secondary{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.88);
  color: #ffffff;
  box-shadow: none;
}

.hero-cta .button-secondary:hover,
.hero-cta .button-secondary:focus{
  background: rgba(255,255,255,0.10);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none !important;
}

/* =========================
   Hero background
========================= */
.hero-image-fullscreen,
.hero-image-setheight{
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  height: 90vh;
}

/* =========================
   Hero typography. desktop / default
========================= */
.hero-image-fullscreen h1,
.hero-image-setheight h1{
  margin:0 0 14px 0;
  /* font-size:clamp(2.6rem, 5vw, 5rem); */
  font-size: var(--font-size-h1);
  line-height:1.03;
  letter-spacing:-0.02em;
  /* max-width:12ch; */
}

.hero-image-fullscreen p,
.hero-image-setheight p{
  margin:0;
  font-size:clamp(1rem, 1.7vw, 1.35rem);
  line-height:1.32;
  /* max-width:34ch; */
}
 .logo-mobile-text {
  display: block;
  width: auto;
  padding: 10px 0 10px 0;
} 
.hero-image .hero-text {
  margin: 3em 0 0.2em 0;
}
/* =========================
   Bottom CTA
========================= */

.bottom-cta{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin:48px 0 24px 0;
  flex-wrap:wrap;
}

.bottom-cta .button{
  min-height:50px;
  padding:14px 28px;
  border-radius:8px;
  font-size:1rem;
  font-weight:700;
  text-decoration:none !important;
  transition:background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bottom-cta .button-primary{
  background:#2f41d1;
  border:1px solid #2f41d1;
  color:#ffffff;
}

.bottom-cta .button-primary:hover,
.bottom-cta .button-primary:focus{
  background:#2433a8;
  border-color:#2433a8;
  color:#ffffff;
  text-decoration:none !important;
}

.bottom-cta .button-secondary{
  background:transparent;
  border:1px solid #2f41d1;
  color:#2f41d1;
}

.bottom-cta .button-secondary:hover,
.bottom-cta .button-secondary:focus{
  background:rgba(47,65,209,0.06);
  border-color:#2433a8;
  color:#2433a8;
  text-decoration:none !important;
}

@media (max-width: 768px){
  .bottom-cta{
    flex-direction:column;
    gap:12px;
    margin:36px 0 20px 0;
  }

  .bottom-cta .button{
    width:100%;
    max-width:320px;
    justify-content:center;
    text-align:center;
  }
}

/* =========================
   Tablet and mobile
========================= */
@media (max-width: 768px){
   .page-home .hero-image-fullscreen,
   .page-home .hero-image-setheight {
    min-height:auto !important;
    background-image:url('/images/services/hero/gps-mobile.webp') !important;
    background-position:center top;
    background-size:cover;
  }

  .hero-image-fullscreen .container,
  .hero-image-setheight .container{
    padding-top:28px !important;
    padding-bottom:28px !important;
  }

  .hero-image-fullscreen .hero-text,
  .hero-image-setheight .hero-text,
  .hero-image-fullscreen .hero-content,
  .hero-image-setheight .hero-content{
    margin-top:0 !important;
    padding-top:0 !important;
  }

  .hero-image-fullscreen h1,
  .hero-image-setheight h1{
  margin:0 0 12px 0 !important;
  font-size:clamp(2rem, 8vw, 3.2rem) !important;
  line-height:1.02 !important;
  max-width:9ch;
  }

  .hero-image-fullscreen p,
  .hero-image-setheight p{
    font-size:clamp(0.98rem, 3.9vw, 1.2rem);
    line-height:1.28;
    max-width:26ch;
  }

  .hero-cta{
    justify-content:flex-start;
    margin-top:54px;
  }

  .hero-cta .button{
    padding:11px 18px;
    font-size:0.98rem;
  }
  .hero-cta .button{
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 8px;
  }

  .hero-cta .button-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.95);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  }

  .hero-cta .button-secondary::before{
    content: "☎";
    display: inline-block;
    font-size: 0.95em;
    line-height: 1;
  }

  .hero-cta .button-secondary:hover,
  .hero-cta .button-secondary:focus{
    background: rgba(255,255,255,0.22);
    border-color: #ffffff;
    color: #ffffff;
  }
}

/* =========================
   Small phones portrait
========================= */
@media (max-width: 480px){
  .hero-image-fullscreen .container,
  .hero-image-setheight .container{
    padding-top:22px !important;
    padding-bottom:22px !important;
  }

  .hero-image-fullscreen h1,
  .hero-image-setheight h1{
	  font-size:clamp(1rem, 8vw, 3.2rem) !important;
	  line-height:1.12 !important;
	  max-width:16ch;
  }

  .hero-image-fullscreen p,
  .hero-image-setheight p,
  .hero-image .hero-text p{
    font-size: clamp(0.6rem, 4vw, 1.1rem);
    line-height:1.68;
    max-width:38ch;
  }

  .hero-cta{
    gap:10px;
  }

  .hero-cta .button{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}
/* =========================
   Homepage intro section
========================= */

.home-intro{
  max-width:1200px;
}
.home-intro .row{
  align-items:stretch;
}

.home-badge{
  display:inline-block;
  background:#f0f0f0;
  font-size:0.8rem;
  padding:6px 10px;
  border-radius:4px;
  margin-bottom:14px;
}

.home-title{
  font-size:2.6rem;
  font-weight:700;
  margin-bottom:20px;
}

.home-text{
  font-size:1.05rem;
  line-height:1.6;
  margin-bottom:14px;
  color:#000;
}

.home-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
}

.home-feature{
  background:#f5f5f5;
  padding:16px;
  border-radius:6px;
}

.home-feature strong{
  display:block;
  font-size:1rem;
}

.home-feature span{
  font-size:0.9rem;
  color:#666;
}

.home-services-box{
  background:linear-gradient(180deg,#2f3137 0%,#272a31 100%);
  color:#fff;
  padding:34px 32px;
  border-radius:14px;

  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-self:stretch;

  box-shadow:0 14px 38px rgba(0,0,0,.14);
}

.home-services-box h3{
  font-size:1.8rem;
  margin:0 0 26px 0;
  font-weight:700;
}

.home-services-box ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
}

.home-services-box li{
  position:relative;
  padding-left:20px;
  font-size:1.05rem;
  line-height:1.45;
}

.home-services-box li:before{
  content:"";
  position:absolute;
  left:0;
  top:0.7em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#4f8cff;
  transform:translateY(-50%);
}
/* =========================
   Phones in landscape / low height
========================= */
@media (max-height: 500px), (orientation: landscape) and (max-height: 600px){
  .hero-image-fullscreen,
  .hero-image-setheight{
    min-height:auto !important;
    background-position:center center !important;
  }

  .hero-image-fullscreen .container,
  .hero-image-setheight .container{
    padding-top:16px !important;
    padding-bottom:16px !important;
  }
  .hero-image-setheight .container{
	height: 100%;
  }
  .hero-image-fullscreen h1,
  .hero-image-setheight h1{
    font-size:clamp(1.45rem, 4.8vw, 2.4rem) !important;
	/* font-size: var(--font-size-h1); */
    line-height:1 !important;
    margin:0 0 8px 0 !important;
    max-width:18ch;
  }

  .hero-image-fullscreen p,
  .hero-image .hero-text p {
	font-size: clamp(0.5rem, 3.9vw, 1.1rem);
    line-height:1.18 !important;
    max-width:44ch;
	width: 70%;
  }
  .hero-image-setheight p,
  .hero-image .hero-text p {
    font-size: clamp(0.5rem, 3.9vw, 1.1rem);
    line-height:1.18 !important;
    max-width:74ch;
	width: 70%;
  }

  .hero-cta{
    margin-top:10px !important;
    gap:8px;
  }

  .hero-cta .button{
    min-height:38px;
    padding:9px 14px;
    font-size:0.9rem;
  }
  .home-title{
  font-size:2rem;
  font-weight:600;
  margin-bottom:20px;
	}

}


@media (min-width: 992px){

  .home-services-box{
    position:sticky;
    top:120px;
  }

}

@media (max-width: 991px){

  .home-services-box{
    margin-top:24px;
    position:static;
  }

  .home-services-box h3{
    font-size:1.5rem;
  }

}

/* =========================
   Header layout
========================= */

.header .container.header-layout{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.header-brand{
  flex:0 0 auto;
  min-width:0;
}

.header-phone{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}

.header-nav{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

/* brand */
.brand-link{
  display:inline-flex;
  align-items:baseline;
  gap:0;
  text-decoration:none;
  line-height:1;
  white-space:nowrap;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:600;
  font-size:2.05rem;
  letter-spacing:-0.03em;
}
 a:hover {
  text-decoration:none;
}

.brand-gps{
  color:#111;
}

.brand-protec{
  color:var(--color-primary);
  margin-left:0.18em;
}

/* phone */
.header-phone a{
  display:inline-block;
  text-decoration:none;
  white-space:nowrap;
  font-size:1.05rem;
  font-weight:700;
  color:var(--color-primary);
  line-height:1.2;
}

.header-phone a:hover,
.header-phone a:focus{
  color:var(--color-primary-dark);
}

/* keep menu aligned cleanly */
.header-nav .main-menu{
  margin:0;
}

.header-nav .main-menu ul{
  display:flex;
  align-items:center;
  gap:26px;
  margin:0;
  padding:0;
  list-style:none;
}

.header-nav .main-menu li{
  margin:0;
}

.header-nav .main-menu a{
  text-decoration:none;
  white-space:nowrap;
}

/* fallback logo image mode */
.header-brand img{
  display:block;
  max-width:100%;
  height:auto;
}

/* tablet */
@media (max-width: 991px){
  .header .container.header-layout{
    gap:18px;
  }

  .brand-link{
    font-size:1.75rem;
  }

  .header-phone a{
    font-size:0.98rem;
  }

  .header-nav .main-menu ul{
    gap:18px;
  }
}

/* mobile */
@media (max-width: 768px){
  .header,
  .header.header-absolute{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    background:#fff;
    min-height:74px;
    height:auto !important;
    overflow:visible !important;
  }

  .header .container.header-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    grid-template-areas:
      "brand hamburger"
      "phone hamburger";
    align-items:start;
    column-gap:14px;
    row-gap:4px;
    min-height:74px;
    padding-top:10px;
    padding-bottom:10px;
  }

  .header-brand{
    grid-area:brand;
    min-width:0;
  }

  .header-phone{
    grid-area:phone;
    display:flex;
    justify-content:flex-start;
    align-items:flex-start;
    min-width:0;
    margin:0;
    padding:0;
  }

  .header-nav{
    display:none;
  }

  .brand-link{
    display:inline-flex;
    align-items:baseline;
    flex-wrap:wrap;
    white-space:normal;
	font-family: "Montserrat", "Arial", sans-serif;
    font-size:1.4rem;
    line-height:1;
    letter-spacing:-0.03em;
  }

  .brand-protec{
    margin-left:0.14em;
  }

  .header-phone a{
    display:inline-block;
    margin:0;
    padding:0;
    font-size:0.92rem;
    line-height:1.15;
    font-weight:700;
    white-space:nowrap;
  }

  .hamburger{
    align-self:start;
    margin-top:2px;
  }

  .page-home .hero-image-fullscreen,
  .page-home .hero-image-setheight{
    padding-top:74px;
  }
}

@media (max-width: 480px){
  .header,
  .header.header-absolute{
    min-height:70px;
  }

  .header .container.header-layout{
    min-height:70px;
    padding-top:9px;
    padding-bottom:9px;
  }

  .brand-link{
    font-size:1.22rem;
	font-family: "Montserrat", "Arial", sans-serif;
  }

  .header-phone a{
    font-size:0.84rem;
  }

  .page-home .hero-image-fullscreen,
  .page-home .hero-image-setheight{
    padding-top:70px;
  }
}

/* =========================
   Default content pages
========================= */

.content-page-title{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.content-page-body{
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2b2b2b;
}

.content-page-body p{
  margin: 0 0 1.2rem 0;
}

.content-page-body h2,
.content-page-body h3,
.content-page-body h4{
  margin: 2.2rem 0 0.9rem 0;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
}

.content-page-body h2{
  font-size: 2rem;
}

.content-page-body h3{
  font-size: 1.55rem;
}

.content-page-body ul,
.content-page-body ol{
  margin: 0 0 1.4rem 1.25rem;
  padding: 0;
}

.content-page-body li{
  margin: 0 0 0.55rem 0;
}

.content-page-body strong{
  font-weight: 700;
  color: #111;
}

.content-page-body a{
  text-decoration: underline;
}

@media (max-width: 768px){
  .content-page-body{
    font-size: 1rem;
    line-height: 1.65;
  }

  .content-page-title{
    margin-bottom: 1.2rem;
  }
}
/* =========================
   Service strips
========================= */

.service-strip{
  background:#fff;
}

.service-strip:nth-child(even){
  background:#f7f8fb;
}

.service-strip-image-wrap{
  border-radius:16px;
  overflow:hidden;
}

.service-strip-image{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  border-radius:16px;
}

.service-strip-content{
  max-width:560px;
}

.service-strip-content-left{
  padding-right:40px;
}

.service-strip-content-right{
  padding-left:40px;
}

.service-strip-content h2{
  margin:0 0 18px 0;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1.08;
  font-weight:700;
  color:#141a24;
}

.service-strip-content p{
  margin:0;
  font-size:1.08rem;
  line-height:1.7;
  color:#5d6470;
}

.service-strip-content .button{
  margin-top:24px;
}

@media (max-width: 991px){
  .service-strip-image{
    height:280px;
  }

  .service-strip-content,
  .service-strip-content-left,
  .service-strip-content-right{
    max-width:none;
    padding-left:0;
    padding-right:0;
  }

  .service-strip-content h2{
    font-size:2rem;
  }

  .service-strip-content p{
    font-size:1rem;
    line-height:1.6;
  }
}
/* =========================
   C0ntact Form
========================= */
.contact-layout {
  padding-bottom: 70px;
}

.contact-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  padding: 36px;
  margin-bottom: 30px;
}

.contact-card-title {
  margin: 0 0 12px 0;
  font-size: 34px;
  line-height: 1.15;
}

.contact-card-text {
  margin-bottom: 28px;
  color: #5b5b5b;
  max-width: 620px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1f2a37;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8dee6;
  border-radius: 6px;
  padding: 13px 14px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2446d8;
  box-shadow: 0 0 0 3px rgba(36, 70, 216, 0.10);
}

.form-checkbox {
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  line-height: 1.5;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.turnstile-wrap {
  margin-top: 8px;
}

.form-actions {
  margin-top: 24px;
}

.form-status {
  margin-top: 14px;
  margin-bottom: 0;
  font-weight: 600;
}

.contact-info-card {
  height: 100%;
}

.contact-info-block + .contact-info-block {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #eef2f7;
}

.contact-info-row {
  margin-bottom: 18px;
}

.contact-info-row:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 700;
}

.contact-info-row a {
  word-break: break-word;
}

.contact-subtitle {
  margin: 0 0 14px 0;
  font-size: 22px;
  line-height: 1.2;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  border-bottom: 1px solid #f2f4f7;
}

.contact-hours-row:last-child {
  border-bottom: 0;
}

.contact-hours-row .day {
  font-weight: 600;
}

.contact-hours-row .time {
  color: #4b5563;
  text-align: right;
}

.contact-note {
  margin: 0;
  color: #5b5b5b;
}

.contact-hp-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-contact-form .intro {
  margin-bottom: 20px;
}

.page-contact-form .page-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .contact-card {
    padding: 26px;
  }

  .contact-card-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .contact-layout {
    padding-bottom: 50px;
  }

  .contact-card {
    padding: 22px;
    border-radius: 6px;
  }

  .contact-card-title {
    font-size: 24px;
  }

  .contact-hours-row {
    flex-direction: column;
    gap: 4px;
  }

  .contact-hours-row .time {
    text-align: left;
  }
}