/* ========== HANDY GUY – Shared Stylesheet ========== */
:root {
  --bg: #f0f4fa;
  --bg-elevated: #e8eef6;
  --card: #ffffff;
  --card-hover: #f8faff;
  --text: #0f172a;
  --text-muted: #64748b;
  --navy: #0f2744;
  --navy-mid: #1a3d63;
  --accent: #ff6b2c;
  --accent-dark: #e85a1a;
  --accent-light: #fff0e8;
  --accent-dim: rgba(255, 107, 44, 0.14);
  --accent-glow: rgba(255, 107, 44, 0.45);
  --teal: #0ea5e9;
  --teal-dim: rgba(14, 165, 233, 0.12);
  --border: rgba(15, 39, 68, 0.09);
  --shadow: 0 4px 28px rgba(15, 39, 68, 0.08);
  --shadow-hover: 0 24px 48px -12px rgba(255, 107, 44, 0.28);
  --hero-gradient: linear-gradient(145deg, #0f2744 0%, #1a3d63 45%, #0f2744 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(240, 244, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(15, 39, 68, 0.1); }
header.hidden { transform: translateY(-100%); }

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-decoration: none;
}
.logo span { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 1.5rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  background: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--accent-dim);
  transition: color 0.2s, background 0.2s;
}
.header-phone:hover { color: var(--accent-dark); background: #ffe4d0; }
.header-phone::before { content: '📞'; font-size: 1rem; }

.header-phone-mobile {
  display: none;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
}

nav { display: flex; gap: 1.75rem; }
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
nav a:hover { color: var(--accent); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--accent); }
nav a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  border-radius: 10px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--accent-light); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.visible { opacity: 1; }
.nav-wrap { display: flex; align-items: center; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-wrap {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: var(--card);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-wrap.open { transform: translateX(0); }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }
  nav { flex-direction: column; gap: 0; align-items: stretch; }
  nav a {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  nav a:last-child { border-bottom: none; }
  nav a::after { display: none; }
  .header-phone { display: none; }
  .header-phone-mobile { display: block; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 100%; }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 48px -8px var(--accent-glow); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px) scale(1.02); }

/* ===== Sections ===== */
.section { padding: 5rem 0; position: relative; }
.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.96);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left {
  opacity: 0;
  transform: translateX(-80px) scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s);
}
.reveal-left.visible { opacity: 1; transform: translateX(0) scale(1); }
.reveal-right {
  opacity: 0;
  transform: translateX(80px) scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s);
}
.reveal-right.visible { opacity: 1; transform: translateX(0) scale(1); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) var(--reveal-delay, 0s);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-title {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.9s, transform 0.9s, filter 0.9s;
}
.reveal-title.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-left.reveal-delay-1, .reveal-right.reveal-delay-1 { --reveal-delay: 0.1s; }
.reveal-left.reveal-delay-2, .reveal-right.reveal-delay-2 { --reveal-delay: 0.2s; }
.reveal-left.reveal-delay-3, .reveal-right.reveal-delay-3 { --reveal-delay: 0.3s; }
.reveal-left.reveal-delay-4, .reveal-right.reveal-delay-4 { --reveal-delay: 0.4s; }
.reveal-scale.reveal-delay-1 { --reveal-delay: 0.1s; }
.reveal-scale.reveal-delay-2 { --reveal-delay: 0.2s; }
.reveal-scale.reveal-delay-3 { --reveal-delay: 0.3s; }
.reveal-scale.reveal-delay-4 { --reveal-delay: 0.4s; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card.card-featured {
  border-color: rgba(14, 165, 233, 0.35);
  background: linear-gradient(160deg, #f0f9ff 0%, #fff 100%);
}
.service-card.card-featured::after {
  content: 'Popularno';
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}
.service-card .card-image-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
}
.service-card.visible .card-image-wrap img { animation: imageJump 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.service-card:hover .card-image-wrap img { transform: scale(1.1); }
.service-card .card-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, transparent 50%);
  pointer-events: none;
}
.service-card .card-body { padding: 1.75rem 2rem 2rem; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(255, 107, 44, 0.3); box-shadow: var(--shadow-hover); }
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .icon { transform: scale(1.1) rotate(-5deg); }
.card-featured .icon { background: rgba(14, 165, 233, 0.12); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.service-tags span {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.2rem 0.6rem;
  background: var(--accent-light); color: var(--accent-dark);
  border-radius: 100px; border: 1px solid var(--accent-dim);
}
.card-featured .service-tags span { background: rgba(14,165,233,0.1); color: #0284c7; border-color: rgba(14,165,233,0.2); }

/* ===== Why section ===== */
.why { background: var(--bg-elevated); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.why-item {
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.why-item:hover { transform: translateY(-4px); border-color: rgba(255,107,44,0.35); box-shadow: var(--shadow-hover); }
.why-item .why-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.why-item strong { display: block; color: var(--accent); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== Cenovnik ===== */
.cenovnik { background: var(--bg-elevated); border-top: 1px solid var(--border); }
.pricing-wrap { overflow: hidden; border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--card); }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.pricing-table thead { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
.pricing-table th { padding: 1rem 1.25rem; text-align: left; font-weight: 700; letter-spacing: -0.01em; }
.pricing-table th:last-child { text-align: right; white-space: nowrap; }
.pricing-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--accent-light); }
.pricing-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
.pricing-table tbody tr:nth-child(even):hover { background: var(--accent-light); }
.pricing-table td { padding: 0.9rem 1.25rem; }
.pricing-table td:last-child { text-align: right; font-weight: 700; color: var(--accent); white-space: nowrap; }
.pricing-table .usluga-naziv { font-weight: 500; color: var(--text); }
.pricing-category td { padding: 0.6rem 1.25rem !important; color: var(--accent) !important; font-weight: 700 !important; font-size: 0.8rem !important; text-transform: uppercase; letter-spacing: 0.08em; background: linear-gradient(90deg, var(--accent-dim), transparent) !important; }
.pricing-category td:last-child { color: transparent !important; }
.pricing-napomena { margin-top: 1.25rem; padding: 1rem 1.25rem; background: var(--accent-light); border-radius: 12px; font-size: 0.9rem; color: var(--text-muted); text-align: center; border: 1px solid var(--accent-dim); }

/* ===== Contact CTA ===== */
.contact { text-align: center; padding: 6rem 0; position: relative; overflow: hidden; }
.contact .contact-bg { position: absolute; inset: 0; background: var(--hero-gradient); }
.contact .contact-bg-orb-1 { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: var(--accent); top: -30%; left: -15%; filter: blur(120px); opacity: 0.25; }
.contact .contact-bg-orb-2 { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: #0ea5e9; bottom: -20%; right: -10%; filter: blur(100px); opacity: 0.2; }
.contact .container { position: relative; z-index: 1; }
.contact h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.03em; color: #fff; }
.contact .sub { color: rgba(255,255,255,0.7); margin-bottom: 3rem; font-size: 1.05rem; }
.contact-phone-big {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, var(--accent), #ff8f4c);
  border-radius: 22px;
  text-decoration: none; color: #fff;
  box-shadow: 0 16px 48px rgba(255,107,44,0.6);
  margin-bottom: 2rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  animation: phoneGlow 2.5s ease-in-out infinite;
}
.contact-phone-big:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 24px 60px rgba(255,107,44,0.7); }
.contact-phone-big .cpb-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; }
.contact-phone-big .cpb-number { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.contact-phone-big .cpb-sub { font-size: 0.85rem; opacity: 0.8; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.contact-actions a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.contact-actions a:hover { transform: translateY(-4px); background: rgba(255,255,255,0.18); }
.contact-actions .wa { background: rgba(37,211,102,0.25); border-color: rgba(37,211,102,0.5); }
.contact-hours { margin-top: 2.5rem; padding: 1.25rem 2rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; display: inline-block; color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }
.contact-hours strong { color: #fff; }

/* ===== Map ===== */
.map-section { padding: 4rem 0; background: var(--bg-elevated); border-top: 1px solid var(--border); }
.map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--card); aspect-ratio: 16/10; max-height: 420px; }
.map-wrap #map { width: 100%; height: 100%; min-height: 320px; }
.map-legend { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.5rem 1rem; background: var(--accent-light); border-radius: 10px; font-size: 0.9rem; font-weight: 500; }
.map-legend span { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--accent); background: var(--accent-dim); }

/* ===== About ===== */
.about { background: var(--bg-elevated); border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.about-text h2 { font-size: clamp(1.5rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.about-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.about-text p + p { margin-top: 1rem; }
.about-info { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; box-shadow: var(--shadow); }
.about-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.about-info .hours, .about-info .address { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.about-info a { color: var(--accent); text-decoration: none; font-weight: 600; }
.about-info a:hover { text-decoration: underline; }
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== FAQ ===== */
.faq { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.25rem 0;
  background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-size: 1.05rem; font-weight: 600;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question .faq-icon { font-size: 1.25rem; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 1.25rem; color: var(--text-muted); line-height: 1.75; font-size: 0.97rem; }

/* ===== Blog cards ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-elevated); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.75rem; color: var(--text); }
.blog-card-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; flex: 1; }
.blog-card-meta { font-size: 0.8rem; color: var(--text-muted); margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: var(--text-muted); }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ===== Article / Blog post ===== */
.article-header { background: var(--hero-gradient); color: #fff; padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.article-header .article-bg-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; pointer-events: none; }
.article-header .orb-1 { width: 500px; height: 500px; background: var(--accent); top: -20%; left: -10%; }
.article-header .orb-2 { width: 350px; height: 350px; background: var(--teal); bottom: -20%; right: -5%; }
.article-header .container { position: relative; z-index: 1; }
.article-category { display: inline-block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); background: rgba(255,107,44,0.15); padding: 0.3rem 0.9rem; border-radius: 100px; border: 1px solid rgba(255,107,44,0.3); margin-bottom: 1.25rem; }
.article-header h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }

.article-body { max-width: 780px; margin: 0 auto; padding: 4rem 1.5rem; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: -0.02em; color: var(--text); }
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text); }
.article-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
.article-body ul, .article-body ol { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--text); }
.article-cta-box { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; border-radius: 20px; padding: 2.5rem; text-align: center; margin: 3rem 0; }
.article-cta-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.article-cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }
.article-cta-box a { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: #fff; padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: transform 0.3s, box-shadow 0.3s; }
.article-cta-box a:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,44,0.5); }
.article-info-box { background: var(--accent-light); border: 1px solid var(--accent-dim); border-radius: 16px; padding: 1.5rem; margin: 1.5rem 0; }
.article-info-box h4 { color: var(--accent-dark); font-weight: 700; margin-bottom: 0.5rem; }
.article-info-box p { color: var(--text-muted); margin: 0; }

/* ===== Blog listing ===== */
.blog-header { background: var(--hero-gradient); color: #fff; padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.blog-header .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; pointer-events: none; }
.blog-header .orb-1 { width: 500px; height: 500px; background: var(--accent); top: -30%; left: -10%; }
.blog-header .orb-2 { width: 300px; height: 300px; background: var(--teal); bottom: -20%; right: 0%; }
.blog-header .container { position: relative; z-index: 1; }
.blog-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.blog-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== Inner page hero ===== */
.page-hero { background: var(--hero-gradient); color: #fff; padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.28; pointer-events: none; }
.page-hero .orb-1 { width: 500px; height: 500px; background: var(--accent); top: -20%; left: -10%; }
.page-hero .orb-2 { width: 300px; height: 300px; background: var(--teal); bottom: -20%; right: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ===== Footer ===== */
footer { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-logo { font-weight: 800; font-size: 1.2rem; color: var(--accent); text-decoration: none; }
.footer-logo span { color: var(--text); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-copy a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ===== Float call button ===== */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8f4c);
  color: #fff; font-size: 1.5rem;
  text-decoration: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(255,107,44,0.55);
  animation: phoneGlow 2.5s ease-in-out infinite;
}

/* ===== Keyframes ===== */
@keyframes imageJump {
  0% { opacity: 0; transform: translateY(-30px) scale(0.92); }
  60% { transform: translateY(4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes phoneGlow {
  0%, 100% { box-shadow: 0 12px 40px rgba(255,107,44,0.55); }
  50% { box-shadow: 0 16px 52px rgba(255,107,44,0.75), 0 0 0 8px rgba(255,107,44,0.12); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-30px) scale(1.05); }
  66% { transform: translate(-20px,20px) scale(0.95); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.2); } }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTextPop {
  0% { opacity: 0; transform: scale(0.85) translateY(30px); filter: blur(20px); }
  70% { transform: scale(1.03) translateY(-5px); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .map-section { padding: 3rem 0; }
  .map-wrap { aspect-ratio: 4/3; max-height: 320px; }
  .map-wrap #map { min-height: 260px; }
  .section { padding: 3rem 0; }
  .contact-actions { flex-direction: column; }
  .contact-actions a { justify-content: center; }
  .contact-phone-big { padding: 1.25rem 2.5rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.45rem; margin-bottom: 1.5rem; }
  footer { padding: 1.5rem 0; font-size: 0.85rem; }
}
@media (max-width: 900px) { .float-call { display: flex; } }
