:root {
  --accent: #fec007; /* derived from logo */
  --accent-2: #e2b121;
  --soft: #feedb7;
  --bg: #ffffff;
  --text: #0f1724;
  --muted: #55606b;
  --container: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}

/* Fix: add top padding so content doesn't hide under sticky header */
body {
  scroll-padding-top: 70px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 20px;
}

.site-header {
  border-bottom: 1px solid #eef2f6;
  background: linear-gradient(180deg, rgba(254, 192, 7, 0.03), rgba(255, 255, 255, 0.95));
  position: relative;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(120%) blur(10px);
}

/* Ensures following sections don't hide under header */
.site-header + * {
  margin-top: 80px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 44px;
}

.brand-text {
  font-weight: 600;
}

.top-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-nav button {
  background: transparent;
  border: 1px solid rgba(15, 23, 36, 0.06);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-cta {
  background: var(--accent);
  color: #08121a;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 64px 0;
}

.hero-inner {
  display: flex;
  gap: 36px;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 1.9rem;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #08121a;
  font-weight: 700;
}

.btn.primary:hover {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 36, 0.06);
}

.btn.ghost:hover {
  border-color: var(--accent);
}

.visual-card {
  width: 220px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(13, 20, 30, 0.04);
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 18px;
  border: 1px solid #f1f4f8;
  border-radius: 10px;
  background: #fff;
}

.process .steps {
  display: flex;
  gap: 18px;
}

.step {
  flex: 1;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #f4f6f8;
}

.step-num {
  background: var(--accent);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.why ul {
  list-style-type: disc;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e9eef2;
  margin-bottom: 12px;
  font-family: inherit;
}

.contact-form button {
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid #eef2f6;
  padding: 36px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-sm {
  height: 28px;
}

.muted {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .process .steps {
    flex-direction: column;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.lang-en { 
  display: none; 
}

.lang-sr { 
  display: block; 
}

/* --- Responsive Navigation --- */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu hidden by default */
@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 8px;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .contact-cta {
    width: 100%;
    text-align: center;
  }
}

/* ===== Cookie Modal ===== */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--card, #fff);
  color: var(--text, #111);
  max-width: 800px;
  width: 100%;
  border-radius: 1rem;
  padding: 2rem;
  overflow-y: auto;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

.cookie-modal-close:hover {
  color: #000;
}

.cookie-link {
  color: var(--accent, #6ee7b7);
  text-decoration: underline;
  cursor: pointer;
}

.cookie-link:hover {
  opacity: 0.8;
}
