/* ===== ŠKUNCA IT — style.css ===== */
/* Svijetla tema — bijela/blijeda pozadina, plavi grid, plave kućice */

:root {
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f7fbff;
  --border-color: #e3eef7;
  --border-glow: rgba(2, 174, 238, 0.35);
  --cyan: #02aeee;
  --cyan-dark: #0284c7;
  --cyan-glow: rgba(2, 174, 238, 0.12);
  --blue-accent: #38bdf8;
  --text-main: #0b1f2e;
  --text-muted: #5c7488;
  --radius: 16px;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-card: 0 8px 24px rgba(2, 100, 150, 0.07);
  --shadow-card-hover: 0 20px 40px rgba(2, 100, 150, 0.14);
  --bg: #ffffff;
  --sans: 'Plus Jakarta Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(2, 174, 238, 0.09) 0%, transparent 55%),
    linear-gradient(to right, rgba(2, 174, 238, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(2, 174, 238, 0.10) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  z-index: -1;
  pointer-events: none;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-color);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.logo-text span { color: var(--cyan-dark); }
.logo-text img,
.logo-img { height: 46px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s;
}
nav a:hover, nav a.active { color: var(--cyan-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 0;
  width: 280px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  display: none;
  box-shadow: 0 20px 40px rgba(2, 60, 100, 0.15);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; animation: fadeIn 0.2s ease-out; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: #eaf6ff;
  color: var(--cyan-dark);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--blue-accent));
  color: #ffffff;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 174, 238, 0.35);
  color: #ffffff;
}

.lang-switcher {
  display: flex; gap: 0.4rem; font-size: 0.8rem; font-family: var(--font-mono);
}
.lang-btn {
  color: var(--text-muted); text-decoration: none; padding: 2px 6px; border-radius: 4px;
}
.lang-btn.active { color: var(--cyan-dark); background: #eaf6ff; font-weight: bold; }

.hero {
  padding: 10rem 1.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eaf6ff;
  border: 1px solid var(--border-glow);
  color: var(--cyan-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}
.hero-h1 span {
  background: linear-gradient(135deg, var(--cyan-dark) 20%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-main {
  background: var(--cyan);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(2, 174, 238, 0.28);
}
.btn-main:hover {
  box-shadow: 0 10px 26px rgba(2, 174, 238, 0.4);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: #f7fbff;
  border-color: var(--cyan);
}

.hero-terminal {
  background: #f2f9ff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.terminal-header {
  background: #ffffff;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-red { background: #ff5f56; }
.t-yellow { background: #ffbd2e; }
.t-green { background: #27c93f; }
.terminal-title { margin-left: auto; color: var(--text-muted); font-size: 0.75rem; }
.terminal-body { padding: 1.5rem; color: var(--text-main); line-height: 1.8; }
.t-prompt { color: var(--cyan-dark); }
.t-success { color: #16a34a; font-weight: bold; }

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-head {
  margin-bottom: 3.5rem;
  text-align: center;
}
.section-sub {
  color: var(--cyan-dark);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}
.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--cyan);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.bento-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
}
.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}
.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.bento-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.bento-link {
  margin-top: auto;
  color: var(--cyan-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.bento-link:hover { text-decoration: underline; }

.card-tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: #eaf6ff;
  border: 1px solid var(--border-glow);
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #f2f9ff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.stat-val {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--cyan-dark);
  font-family: var(--font-mono);
}
.stat-lbl { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }

.cta-banner {
  background: linear-gradient(135deg, #eaf6ff, #ffffff);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 4rem auto;
  max-width: 1280px;
}
.cta-banner h3 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-main); }
.cta-banner p { color: var(--text-muted); max-width: 650px; margin: 0 auto 2rem; font-size: 1.1rem; }

footer {
  background: #f2f9ff;
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); margin-top: 1rem; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text-main); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan-dark); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 8rem; }
  .hero-p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-featured { grid-column: span 1; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
}
@media (max-width: 576px) {
  .stats-bar { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.4rem; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ===== PAGE-SPECIFIC: service stranice, kontakt, o-nama ===== */

.nav-wrap {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 88px;
}
.logo-link { display: flex; align-items: center; gap: 14px; }
.logo-link img { height: 66px; width: auto; flex-shrink: 0; }
.nav-cta {
  font-family: var(--mono) !important; font-size: 0.82rem !important;
  font-weight: 700 !important; color: var(--cyan-dark) !important;
  border: 1px solid var(--cyan); padding: 0.45rem 1.1rem;
  border-radius: var(--radius); transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--cyan) !important; color: #ffffff !important; }
.nav-cta.active::after { display: none !important; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  display: block; padding: 0.9rem 2rem;
  font-size: 0.95rem; color: var(--muted);
  border-bottom: 1px solid var(--border); transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); background: var(--bg3); }
.mobile-nav.open { display: flex; }

/* SEKCIJE */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: #f7fbfe; }
.section-label {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--cyan-dark); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600;
  margin-bottom: 1rem; line-height: 1.25;
  color: var(--white);
}
.section-sub {
  color: var(--muted); max-width: 520px; font-size: 1rem; line-height: 1.7;
}

/* VRIJEDNOSTI */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.value-num {
  font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  color: var(--cyan-dark); border: 1px solid var(--cyan-dim);
  border-radius: 4px; padding: 0.3rem 0.55rem; flex-shrink: 0; margin-top: 2px;
}
.value-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.value-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* O NAMA (split layout) */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-top: 3rem;
}
.about-text p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.75; font-size: 0.97rem; }
.about-img {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-card);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.stat-row { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--cyan); padding-left: 1rem; }
.stat-num { font-family: var(--mono); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

/* PREDNOSTI (why) */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-card); }
.why-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* PAGE HERO (podstranice) */
.page-hero {
  background: linear-gradient(135deg, #f2f9ff 60%, #eaf6ff 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 2rem 3rem;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--mono); font-size: 0.75rem; color: var(--muted);
  margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.breadcrumb a { color: var(--cyan-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }
.page-hero h1 {
  font-family: var(--mono); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 1rem; color: var(--white);
}
.page-hero h1 span { color: var(--cyan-dark); }
.page-hero p { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* USLUGA DETALJ */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.service-detail-text p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.75; font-size: 0.97rem; }
.service-detail-text h3 { font-size: 1.1rem; font-weight: 600; margin: 2rem 0 0.75rem; color: var(--white); }
.service-detail-img { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-list { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.feature-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.feature-list li::before { content: '▸'; color: var(--cyan-dark); flex-shrink: 0; margin-top: 1px; }

/* CTA BOX */
.cta-box {
  background: #f2f9ff; border: 1px solid var(--border);
  border-radius: 10px; padding: 3rem 2rem;
  text-align: center; margin-top: 4rem;
}
.cta-box h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--white); }
.cta-box p { color: var(--muted); margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* RADNO VRIJEME & KONTAKT */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; font-family: var(--mono); font-size: 0.82rem; }
.badge-open  { color: #16a34a; font-family: var(--mono); font-size: 0.72rem; }
.badge-closed{ color: #dc2626; font-family: var(--mono); font-size: 0.72rem; }
.contact-block { display: flex; flex-direction: column; gap: 1rem; }
.contact-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; background: var(--bg3);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
}
.contact-row:hover { border-color: var(--cyan); box-shadow: var(--shadow-card); }
.contact-icon { font-size: 1.15rem; flex-shrink: 0; width: 26px; text-align: center; }
.c-label { font-size: 0.72rem; color: var(--muted); font-family: var(--mono); margin-bottom: 0.1rem; }
.c-val   { font-size: 0.93rem; color: var(--white); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-family: var(--mono); color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: var(--white); font-family: var(--sans); font-size: 0.9rem;
  transition: border-color 0.2s; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--cyan);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9db4c6; }
.form-group select option { background: #ffffff; }
.btn-submit {
  width: 100%; font-family: var(--mono); font-size: 0.9rem; font-weight: 700;
  background: var(--cyan); color: #ffffff; border: none;
  border-radius: var(--radius); padding: 0.95rem; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s; letter-spacing: 0.04em;
}
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); }

.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 0; max-width: 100%;
}
.footer-brand-col {
  background: #f2f9ff;
  padding: 2.5rem 2.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
}
.footer-brand-col img { height: 52px; width: auto; margin-bottom: 0.25rem; }
.footer-brand-tagline {
  font-family: var(--mono); font-size: 1rem; font-weight: 600;
  color: var(--white); max-width: 260px; line-height: 1.4;
}
.footer-contact-col {
  background: #eef8ff; padding: 2.5rem 2rem;
  border-left: 1px solid var(--border-color);
}
.footer-contact-col h4, .footer-links-col h4, .footer-hours-col h4 {
  font-family: var(--mono); font-size: 0.78rem; font-weight: 700;
  color: var(--cyan-dark); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.2rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; color: var(--muted); }
.footer-contact-list li span.ico { color: var(--cyan-dark); flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-list a { color: var(--muted); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--cyan-dark); }
.footer-links-col {
  background: #e9f6ff; padding: 2.5rem 2rem;
  border-left: 1px solid var(--border-color);
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links-col ul li a { font-size: 0.86rem; color: var(--muted); transition: color 0.2s; }
.footer-links-col ul li a:hover { color: var(--cyan-dark); }
.footer-hours-col {
  background: #f2f9ff; padding: 2.5rem 2rem;
  border-left: 1px solid var(--border-color);
}
.footer-hours-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-hours-col ul li { font-size: 0.84rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.footer-hours-col ul li::before { content: '●'; font-size: 0.55rem; color: var(--cyan-dark); flex-shrink: 0; }
.footer-hours-col ul li.closed::before { color: #dc2626; }
.footer-bottom {
  background: #eaf6ff; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.78rem; color: var(--muted);
  max-width: 100%;
}
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cyan-dark); }
@media (max-width: 768px) {
  .about-split, .hours-grid, .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.5rem; }
  .stat-row { gap: 1.5rem; }
  .service-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-split.reverse { direction: ltr; }
  .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .mobile-call { display: block; }
  body { padding-bottom: 4.5rem; }
}

/* ===== FUNKCIONALNA MOBILNA NAVIGACIJA ===== */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: 1px solid rgba(0, 133, 180, .28);
  border-radius: 9px;
  background: rgba(0, 169, 214, .08);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .22s ease, opacity .22s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
  header .nav-container { gap: .7rem; padding: .75rem 1rem; }
  header .nav-container > nav { display: none; }
  header .nav-container > div { margin-left: auto; gap: .45rem !important; }
  header .btn-nav-cta, .btn-nav-cta { display: none !important; }
  header .lang-switcher { margin-left: 0; gap: .2rem; }
  header .lang-btn { padding: .25rem .38rem; font-size: .68rem; }
  .burger { display: flex; }
  .mobile-nav {
    display: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    flex-direction: column;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 18px 35px rgba(20, 55, 75, .18);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav > a,
  .mobile-nav .nav-dropdown > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.25rem;
    color: var(--muted);
    font-size: .95rem;
    text-align: left;
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
  }
  .mobile-nav .nav-dropdown > a::after { content: '▼'; font-size: .7rem; }
  .mobile-nav .nav-dropdown.open > a::after { transform: rotate(180deg); }
  .mobile-nav .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f5fbff;
    box-shadow: none;
  }
  .mobile-nav .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .mobile-nav .nav-dropdown-menu a {
    display: block;
    padding: .72rem 1.25rem .72rem 2rem;
    color: var(--muted);
    border-bottom: 1px solid var(--border-color);
  }
  .hero-terminal { display: none !important; }
  .hero { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  header .logo-text { font-size: 1.1rem; }
  header .lang-btn { padding: .22rem .3rem; font-size: .62rem; }
  .burger { width: 39px; height: 39px; }
}

/* DROPDOWN NAVIGACIJA (starija varijanta) */
.nav-dropdown > a {
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-dropdown > a::after {
  content: '▾'; font-size: 0.75rem; color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); color: var(--cyan-dark); }
.nav-dropdown:hover > a { color: var(--white); }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 8px;
  min-width: 240px;
  z-index: 200;
}
.dropdown-menu-inner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 40px rgba(2, 60, 100, 0.16);
  overflow: hidden;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.85rem; color: var(--muted);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: #eaf6ff; color: var(--white); }
.dropdown-menu a .dd-icon { color: var(--cyan-dark); font-size: 0.9rem; flex-shrink: 0; width: 18px; }
.dropdown-menu a.dd-featured {
  background: #eaf6ff;
  border-left: 2px solid var(--cyan);
}
.dropdown-menu a.dd-featured:hover { background: #d9f0ff; }
.dropdown-menu a.dd-featured .dd-icon { color: #ca8a04; }

/* Mobile dropdown */
.mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem;
  font-size: 0.95rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
  cursor: pointer; background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left; font-family: var(--sans);
}
.mobile-dropdown-toggle:hover { color: var(--white); background: var(--bg3); }
.mobile-dropdown-toggle .arrow { transition: transform 0.2s; font-size: 0.7rem; }
.mobile-dropdown-toggle.open-dd .arrow { transform: rotate(180deg); }
.mobile-submenu { display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 2rem 0.7rem 2.8rem;
  font-size: 0.87rem; color: var(--muted);
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s, background 0.2s;
}
.mobile-submenu a:hover { color: var(--white); background: var(--bg3); }
.mobile-submenu a.dd-featured { color: var(--cyan-dark); }

/* LANGUAGE SWITCHER (starija varijanta) */
.lang-active {
  background: #eaf6ff; border-color: var(--cyan) !important;
  color: var(--cyan-dark) !important; cursor: default;
}

/* Buttons usklađeni s novim dizajnom */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  display: inline-block;
  background: #ffffff;
  color: var(--cyan-dark);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--cyan);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline:hover { background: #eaf6ff; }
.cta-box {
  background: #eaf6ff;
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--text-main); }
.cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Feature lista */
.feature-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
}
.feature-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--cyan-dark);
}

/* Kontakt forma */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-main);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.btn-submit {
  background: var(--cyan);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

/* ===== SERVICE SPLIT LAYOUT — slika sa strane ===== */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}
.service-split:last-child { border-bottom: none; margin-bottom: 0; }
.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }
.service-split-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-card);
}
.service-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.service-split-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-split-text h2 span { color: var(--cyan-dark); }
.service-split-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-split-tag {
  display: inline-block;
  background: #eaf6ff;
  border: 1px solid var(--border-glow);
  border-radius: 99px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  color: var(--cyan-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}
@media (max-width: 768px) {
  .service-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-split.reverse { direction: ltr; }
}

/* ===== VARIJABLE KOMPATIBILNOST — stari → novi dizajn ===== */
:root {
  --bg3: #f2f9ff;
  --border: #e3eef7;
  --muted: #5c7488;
  --cyan-dim: rgba(2, 174, 238, 0.35);
  --white: #0b1f2e;
  --mono: 'JetBrains Mono', monospace;
  --bg2: #f7fbfe;
}

/* ===== KONTAKT STRANICA — layout fix ===== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.hours-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}
.badge-open { color: #16a34a; font-size: 0.6rem; }
.badge-closed { color: #dc2626; font-size: 0.6rem; }

.contact-block { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f2f9ff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-row:hover { border-color: var(--cyan); box-shadow: var(--shadow-card); }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.c-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.c-val { font-size: 0.95rem; color: var(--text-main); font-weight: 500; }

/* Kontakt forma */
.section-inner form {
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--cyan-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
/* Dodatna poboljšanja hrvatske verzije */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin:2rem 0}
.why-grid article,.faq-block{background:var(--bg3);border:1px solid var(--border);border-radius:10px;padding:1.5rem}
.why-grid h3,.faq-block h2{color:var(--white);margin-top:0}
.why-grid p{color:var(--muted)}
.faq-block{margin-top:2.5rem}
.faq-block details{border-top:1px solid var(--border);padding:1rem 0}
.faq-block summary{cursor:pointer;color:var(--white);font-weight:700}
.faq-block details p{margin:.75rem 0 0;color:var(--muted)}
.privacy-consent label{display:flex;gap:.65rem;align-items:flex-start}
.privacy-consent input{width:auto;margin-top:.25rem}
.mobile-call{display:none;position:fixed;right:1rem;bottom:1rem;z-index:1000;padding:.8rem 1rem;border-radius:999px;background:var(--cyan);color:#ffffff;font-weight:800;text-decoration:none;box-shadow:0 10px 26px rgba(2,174,238,.35)}
@media(max-width:768px){.why-grid{grid-template-columns:1fr}.mobile-call{display:block}body{padding-bottom:4.5rem}}

/* ===== RECENZIJE ===== */
.reviews-section {
  padding: 4rem 2rem;
  background: #f2f9ff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.reviews-header h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-main); margin: 0.5rem 0; }
.reviews-score { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-top: 0.5rem; }
.reviews-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.reviews-num { font-size: 1.4rem; font-weight: 800; color: var(--text-main); }
.reviews-count { color: var(--text-muted); font-size: 0.88rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.review-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-card-hover); }
.review-top { display: flex; align-items: center; gap: 0.75rem; position: relative; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #eaf6ff;
  border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; color: var(--cyan-dark);
  flex-shrink: 0; text-transform: uppercase;
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--text-main); }
.review-stars { color: #f5a623; font-size: 0.8rem; margin-top: 1px; }
.review-google { width: 14px; height: 14px; margin-left: auto; opacity: 0.7; }
.review-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
