/* ===== Termo Spasić — glavni stylesheet ===== */

:root {
  --navy: #0e1520;
  --navy-light: #1a2332;
  --blue: #ea580c;
  --blue-dark: #c2410c;
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --accent-tint: rgba(234, 88, 12, 0.08);
  --accent-tint-strong: rgba(234, 88, 12, 0.14);
  --bg: #fafafa;
  --card: #ffffff;
  --text: #1e2530;
  --text-muted: #666f7a;
  --border: #e8e8e6;
  --radius: 14px;
  --shadow: 0 16px 40px -16px rgba(14, 21, 32, 0.16);
  --shadow-sm: 0 4px 16px -8px rgba(14, 21, 32, 0.1);
  --gradient-warm: var(--orange);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }

section { padding: 96px 0; position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--accent-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-warm);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(234, 88, 12, 0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -8px rgba(234, 88, 12, 0.46); background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-3px); }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #fff; transition: color 0.2s; }
.site-header.scrolled .logo { color: var(--navy); }
.logo .logo-mark {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(14, 21, 32, 0.12);
}
.logo .logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo span.accent { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.14); }
.site-header.scrolled .nav-links a { color: var(--navy); }
.site-header.scrolled .nav-links a:hover { background: var(--accent-tint); color: var(--blue-dark); }
.site-header.scrolled .nav-links a.active { color: var(--blue-dark); background: var(--accent-tint); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.site-header.scrolled .header-phone { color: var(--navy); }
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; border-radius: 2px; }
.site-header.scrolled .nav-toggle span { background: var(--navy); }

/* ===== Hero ===== */
.hero {
  padding: 180px 0 120px;
  background: radial-gradient(circle at 82% 12%, rgba(234, 88, 12, 0.13), transparent 50%),
              var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 20px; color: #fff; }
.hero-content h1 .grad { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .stat-num { font-size: 30px; font-weight: 800; }
.hero-stats .stat-num .grad { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }

.hero-visual { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-orb {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--gradient-warm);
  filter: blur(70px);
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 32px;
  animation: float 5s ease-in-out infinite;
}
.hero-card-icon {
  width: 56px; height: 56px;
  border-radius: 13px;
  background: rgba(234, 88, 12, 0.16);
  border: 1px solid rgba(234, 88, 12, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hero-card-icon svg { width: 26px; height: 26px; color: var(--orange); }
.hero-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,0.65); font-size: 14px; }
.hero-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: #fff;
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  animation: float 4.5s ease-in-out infinite reverse;
}
.hero-badge .num { font-size: 22px; font-weight: 800; color: var(--orange-dark); }
.hero-badge .lbl { font-size: 12px; color: var(--text-muted); line-height: 1.2; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* ===== Trust bar ===== */
.trust-bar { background: #fff; padding: 0; margin-top: -1px; border-bottom: 1px solid var(--border); }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 24px;
}
.trust-item { text-align: center; padding: 0 12px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-item .t-num { font-size: 28px; font-weight: 800; color: var(--navy); }
.trust-item .t-num span { color: var(--orange); }
.trust-item .t-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== Photo placeholder ===== */
.photo-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234,88,12,0.07), rgba(14,21,32,0.04));
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  margin-bottom: 24px;
}
.photo-placeholder svg { width: 34px; height: 34px; color: var(--orange); opacity: 0.55; }
.photo-placeholder span { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.photo-placeholder.large { aspect-ratio: 16 / 9; margin-bottom: 32px; }
.photo-placeholder.large svg { width: 44px; height: 44px; }

/* ===== Services grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 28px; }
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card .service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card .service-icon svg { width: 28px; height: 28px; color: var(--orange); }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); margin-bottom: 20px; }
.service-card ul { margin-bottom: 24px; }
.service-card ul li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: var(--text); font-size: 15px; }
.service-card ul li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-dark); }
.service-card .service-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card .service-link:hover svg { transform: translateX(4px); }

.mini-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mini-service { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; transition: 0.3s; }
.mini-service:hover { border-color: var(--blue); transform: translateY(-4px); }
.mini-service .mini-icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--orange); }
.mini-service .mini-icon svg { width: 100%; height: 100%; }
.mini-service h4 { font-size: 15px; }

/* ===== Why us ===== */
.why-section { background: var(--navy); color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 32px; transition: 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); }
.why-card .why-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(234,88,12,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-card .why-icon svg { width: 26px; height: 26px; color: var(--blue); }
.why-card h3 { font-size: 19px; margin-bottom: 10px; color: #fff; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 15px; }

/* ===== Process ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step .step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px -6px rgba(234,88,12,0.35);
}
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 14px; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text); font-size: 15px; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-warm); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-loc { font-size: 13px; color: var(--text-muted); }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
  margin: 0 auto;
  max-width: var(--container);
}
.cta-banner h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Map / contact teaser ===== */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 40px; }
.contact-info-card h3 { color: #fff; font-size: 22px; margin-bottom: 24px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-row .ci-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .ci-icon svg { width: 22px; height: 22px; color: var(--orange); }
.contact-row .ci-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-row .ci-value { font-weight: 700; font-size: 16px; }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.contact-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.contact-social a:hover { background: var(--gradient-warm); }
.contact-social svg { width: 18px; height: 18px; color: #fff; }

.contact-form-card { background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  background: #fbfcfd;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: #16a34a; margin: 0 auto 16px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 14px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; cursor: pointer; font-weight: 700; font-size: 16px;
}
.faq-question .faq-plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; transition: transform 0.3s; }
.faq-question .faq-plus::before, .faq-question .faq-plus::after {
  content: ''; position: absolute; background: var(--blue-dark); border-radius: 2px;
}
.faq-question .faq-plus::before { width: 16px; height: 2px; top: 11px; left: 4px; }
.faq-question .faq-plus::after { width: 2px; height: 16px; top: 4px; left: 11px; transition: opacity 0.25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 320px; padding: 0 26px 22px; }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(14,165,233,0.18), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; color: #fff; }
.page-hero p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,0.72); font-size: 17px; }

.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { font-size: 26px; margin: 40px 0 16px; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.check-list { margin: 20px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 16px; }
.check-list li svg { width: 22px; height: 22px; color: #fff; background: var(--gradient-warm); border-radius: 50%; padding: 4px; flex-shrink: 0; margin-top: 1px; }

.side-cta { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); text-align: center; position: sticky; top: 110px; }
.side-cta .service-icon { margin: 0 auto 20px; }
.side-cta h3 { font-size: 20px; margin-bottom: 10px; }
.side-cta p { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.two-col-service { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col .contact-row { margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: 0.3s;
  z-index: 900;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 22px; height: 22px; }

/* ===== Floating call button (mobile) ===== */
.floating-call {
  display: none;
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 950;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; margin-top: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col-service { grid-template-columns: 1fr; }
  .side-cta { position: static; }
  .mini-services { grid-template-columns: repeat(2, 1fr); }

  .nav-links, .header-cta .header-phone-text, .header-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .header-cta { gap: 10px; }

  /* mobile nav drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px; height: 100vh;
    background: #fff;
    padding: 100px 28px 28px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 999;
    gap: 4px;
  }
  .nav-links.open { right: 0; }
  .nav-links a, .site-header.scrolled .nav-links a { padding: 14px 16px; font-size: 17px; color: var(--navy); }
  .nav-links a:hover, .site-header.scrolled .nav-links a:hover { background: var(--accent-tint); color: var(--blue-dark); }
  .nav-links a.active, .site-header.scrolled .nav-links a.active { color: var(--blue-dark); background: var(--accent-tint); }
  .nav-overlay { position: fixed; inset: 0; background: rgba(11,27,43,0.5); opacity: 0; pointer-events: none; transition: 0.3s; z-index: 998; }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 720px) {
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .trust-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  section { padding: 64px 0; }
  .hero { padding: 140px 0 80px; }
  .page-hero { padding: 130px 0 60px; }
  .floating-call { display: block; }
  body { padding-bottom: 78px; }
  .mini-services { grid-template-columns: 1fr 1fr; }
}

/* Counter helper */
.count-up { display: inline-block; }
