/* ============================================
   TAXI ZAGREB — Amber + Dark Light Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --primary: #E8890B;
  --primary-hover: #CA6F08;
  --primary-glow: #F0A020;
  --primary-light: rgba(217, 119, 6, 0.08);
  --primary-border: rgba(217, 119, 6, 0.25);
  --dark: #18181B;
  --bg: #EBEBEA;
  --bg-alt: #E5E5E0;
  --bg-card: #FFFFFF;
  --bg-darker: #FFFFFF;
  --text: #0a0a0a;
  --text-secondary: #0a0a0a;
  --border: rgba(0, 0, 0, 0.06);
  --border-light: rgba(0, 0, 0, 0.03);
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 6px 20px rgba(217, 119, 6, 0.3);
  --transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.15rem; }

.text-primary { color: var(--primary); }
.text-gray { color: var(--text-secondary); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* --- Remix Icon global --- */
[class^="ri-"],
[class*=" ri-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #B46508 0%, #E8890B 35%, #F5B83A 100%);
  color: var(--dark);
  font-weight: 700;
  box-shadow: var(--shadow-primary);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
}

.btn-primary .ri-phone-line {
  animation: phone-shake 2s ease-in-out infinite;
  display: inline-block;
}

/* Hide "Nazovite nas" text, show icon + number */
.hero-actions .btn-primary .btn-label {
  display: none;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50%, 100% { transform: rotate(0deg); }
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary-border);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline:active {
  transform: translateY(0) scale(0.98);
}

.btn-white {
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.08), transparent);
  transition: left 0.5s ease;
}

.btn-white:hover::before {
  left: 100%;
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-white:active {
  transform: translateY(0) scale(0.98);
}

.btn-sm {
  padding: 11px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.15rem;
}

.btn i {
  font-size: 1.1em;
}

/* --- Navigation --- */
/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 6px 0;
  background: #0a0f1a;
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
  transition: var(--transition);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.top-bar-item:hover {
  color: var(--primary);
}

.top-bar-item i {
  color: var(--primary);
  font-size: 1rem;
}

.top-bar-phone {
  animation: top-phone-pulse 2s ease-in-out infinite;
}

@keyframes top-phone-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar .lang-btn {
  font-size: 0.8rem;
  font-weight: 700;
  width: auto;
  height: auto;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  filter: none;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.top-bar .lang-btn.active {
  color: var(--primary);
}

.top-bar .lang-btn:hover {
  color: var(--primary);
}

.top-bar .lang-btn.active,
.top-bar .lang-btn:hover {
  opacity: 1;
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.navbar {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
  transition: var(--transition);
}

.navbar .nav-logo,
.navbar .nav-links a {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.navbar.scrolled .nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid var(--primary);
}

.navbar.scrolled .nav-toggle span {
  background: #fff;
}

.navbar.scrolled {
  top: 0;
  padding: 10px 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 40%, #F0A020 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
}

.nav-logo .logo-icon i {
  font-size: 1.1rem;
}

.nav-logo:hover .logo-icon {
  box-shadow: var(--shadow-primary);
  transform: rotate(-3deg);
}

/* Language switcher — mobile nav */
.nav-right-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-right-mobile .nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-right-mobile .lang-btn {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  opacity: 1;
  letter-spacing: 0.05em;
}

.nav-right-mobile .lang-btn.active {
  color: var(--primary);
  background: none;
}

.nav-right-mobile .lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Language switcher */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.25s ease;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn.active {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

/* Phone in nav */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  margin-right: auto;
  margin-left: 16px;
}

.nav-phone i {
  font-size: 0.85rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid var(--primary);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 40%, #F0A020 100%);
  color: var(--dark);
  font-weight: 700;
  margin-left: 8px;
}

.nav-links .nav-cta:hover {
  color: var(--dark);
  box-shadow: var(--shadow-primary);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  padding: 80px 24px 40px;
  transition: right 0.35s ease;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}

.mobile-menu a i {
  width: 20px;
  text-align: center;
  color: var(--text-secondary);
}

.mobile-menu a:hover i,
.mobile-menu a.active i {
  color: var(--primary);
}

.mobile-menu .mobile-cta {
  margin-top: auto;
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 40%, #F0A020 100%);
  color: var(--dark);
  justify-content: center;
  font-weight: 700;
}

.mobile-menu .mobile-cta:hover {
  box-shadow: var(--shadow-primary);
  color: var(--dark);
}

.mobile-menu .mobile-cta i {
  color: var(--dark);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  white-space: nowrap;
}

.floating-whatsapp-btn i {
  font-size: 1.3rem;
}

.floating-whatsapp-btn:hover {
  background: #1EBE57;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 25%, #334155 50%, #94a3b8 75%, #EBEBEA 100%);
}

/* Decorative glow background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
  top: -20%;
  right: -10%;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.04) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
}

.hero-grid-pattern {
  display: none;
}

/* Zagreb city background photo */
.hero-city-photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 0;
  background: url('/assets/14.webp') center 75% / cover no-repeat;
  opacity: 0.90;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 85%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 240px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 680px;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateX(30px);
  animation: hero-slide-in 0.9s 0.8s ease forwards;
  margin-right: -120px;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.35));
  animation: car-float 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* Speech bubble */
.speech-bubble {
  position: absolute;
  top: -10px;
  right: 10%;
  background: #fff;
  border-radius: 20px;
  padding: 18px 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  z-index: 4;
  animation: bubble-pop 0.5s 1.5s ease both;
  text-decoration: none;
  cursor: pointer;
}

.bubble-dark {
  color: #1a1a1a;
}

.speech-bubble span {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.5;
  text-align: center;
  display: block;
}

.speech-bubble strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.speech-bubble .bubble-dark {
  color: #1a1a1a;
}

.speech-bubble .bubble-cta {
  color: var(--primary);
}

.speech-bubble .bubble-number {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

/* Three dots trail */
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 24px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

@keyframes bubble-pop {
  0% { opacity: 0; transform: scale(0.6) translateY(10px); }
  60% { transform: scale(1.05) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}


/* Car glow effect */
.car-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

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



@keyframes hero-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-hover);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.5s 0.1s ease forwards;
}

.hero-badge i {
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 30px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s 0.2s ease forwards;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #A85C08 0%, #CA6F08 40%, #E8890B 70%, #F0A020 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.3));
}

.hero h1 .hero-city {
  font-weight: 900;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 440px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.6s 0.3s ease forwards;
}

/* Hero tags - badge row */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s 0.35s ease forwards;
}

.hero-tags .hero-badge {
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0;
  opacity: 1;
  transform: none;
  animation: none;
  background: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #0a0a0a;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hero-tags .hero-badge i {
  font-size: 1.05rem;
  color: var(--primary);
}

.hero-tags-second {
  justify-content: flex-end;
  margin-top: -14px;
  padding-left: 25%;
}

/* Hero card */
.hero-card {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s 0.5s ease forwards;
}

.hero-card-inner {
  display: contents;
}

.hero-card-line {
  display: none;
}

.hero-text {
  list-style: none;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-text li {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.5;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  border: 1px solid rgba(217, 119, 6, 0.25);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.12);
  transition: all 0.3s ease;
}

.hero-text li:hover {
  background: rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: translateX(4px);
}

.hero-text li i {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(232, 137, 11, 0.35));
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 0.7s 0.65s ease forwards;
}

.hero-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Hero car — mobile/tablet only */
.hero-car-mobile {
  display: block;
  max-width: 340px;
  margin: 24px auto 0;
  position: relative;
  z-index: 3;
}

.hero-car-mobile img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
  animation: car-float 3s ease-in-out infinite;
}

.pulse-sync {
  transition: transform 0.5s ease;
}

.pulse-sync.pulse-up {
  transform: scale(1.06);
}

.pulse-sync.pulse-down {
  transform: scale(1);
}

/* Outline button */
.btn-outline-light {
  background: rgba(0, 0, 0, 0.08);
  color: #0a0a0a;
  font-weight: 700;
  border: 2px solid #F59E0B;
}

.btn-outline-light i {
  color: #0a0a0a;
}

.hero-actions .btn-outline-light {
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid #F59E0B;
}

.hero-actions .btn-outline-light i {
  color: #fff;
}

.btn-outline-light:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.btn-outline-light:active {
  transform: scale(0.98);
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 48px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(217, 119, 6, 0.08);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Service Highlights --- */
.highlights {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  z-index: 2;
}
.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}
.highlights::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-top: 0;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #E8890B, #F0A020);
  border-radius: 3px 0 0 3px;
}

.highlight-item:hover {
  border-color: rgba(217, 119, 6, 0.35);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  font-size: 1.3rem;
  color: var(--primary);
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.1);
}

.highlight-item h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.highlight-item p {
  display: none;
  font-weight: 500;
}

/* --- Home Services Section --- */
.home-services {
  padding: 28px 0 64px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.home-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.home-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.home-services-header {
  text-align: center;
  max-width: none;
  margin: 0 auto 64px;
}

.home-services-header h2 {
  color: #fff;
  font-size: 2.6rem;
}

.home-services-header .section-label {
  color: var(--primary);
  font-size: 1.1rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.home-service-card {
  background: #18181B;
  border-radius: var(--radius-lg);
  padding: 52px 24px 32px;
  position: relative;
  overflow: visible;
  transition: all 0.35s ease;
  border: 1px solid rgba(217, 119, 6, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #E8890B, #F0A020);
}

.home-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 6, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.home-service-icon {
  width: 52px;
  height: 52px;
  background: #F59E0B;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  color: #18181B;
  font-size: 1.3rem;
}

.home-service-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 14px;
}

.home-service-card p {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.7;
}

/* --- About Card Section --- */
.about-card-section {
  padding: 64px 0;
  background: var(--bg);
  position: relative;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 20px;
}

.about-card h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-card-text-secondary {
  margin-top: 12px;
}

/* --- About Split Section (image + text) --- */
.about-split {
  padding: 48px 0 80px;
  background: var(--bg);
  position: relative;
}

.about-split-header {
  text-align: center;
  margin: 0 auto 28px;
}

.about-split-text h2 {
  text-align: center;
}

.about-split-text p {
  text-align: left;
}

.about-split-header h2 {
  font-size: 2.6rem;
}

.about-split-header .section-label {
  font-size: 1.1rem;
}

.about-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.about-split::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.about-split-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.about-split-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-split-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-split-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.about-split-image-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}

.about-split-image-badge span {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.about-split-text {
  width: 100%;
}

.about-split-text .section-label {
  margin-bottom: 12px;
}

.about-split-text h2 {
  margin-bottom: 16px;
  font-size: 2.6rem;
}

.about-split-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about-split-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-split-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
  transition: all 0.3s ease;
}

.about-split-feature:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.about-split-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.2) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.about-split-feature:hover .about-split-feature-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}

.about-split-feature span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Safety Split Section (text + image) --- */
.safety-split {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
}

.safety-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.safety-split::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.safety-split-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.safety-split-text {
  width: 100%;
}

.safety-split-text .section-label {
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.safety-split-text h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  text-align: center;
}

.safety-split-text p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: center;
}

.safety-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.safety-features-centered {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 500px;
  margin: 28px auto 0;
}
.safety-features-centered .about-split-feature {
  flex-direction: row;
  text-align: left;
}

.safety-check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.safety-check-item i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181B;
  font-size: 0.85rem;
}

.safety-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.safety-check:hover {
  border-color: var(--primary-border);
  transform: translateX(4px);
}

.safety-check i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
}

.safety-split-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.safety-split-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.safety-split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.safety-badge-big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.safety-badge-big i {
  color: var(--primary);
  font-size: 1.3rem;
}

.safety-badge-big span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Highlights Header --- */
.highlights-header {
  display: none;
  text-align: center;
  margin-bottom: 48px;
}

.highlights-header h2 {
  color: #fff;
}

.highlights-header .section-label {
  color: var(--primary);
}

/* --- Features Section --- */
.features {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #334155 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%) 1;
}

.features::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.features-header h2 {
  color: #fff;
  font-size: 2.6rem;
}

.features-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.features-header .section-label {
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 0 30px rgba(217, 119, 6, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #E8890B, #F0A020);
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.2), inset 0 0 40px rgba(217, 119, 6, 0.05);
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.75);
}

.feature-card:hover::before {
  box-shadow: 0 0 8px rgba(232, 137, 11, 0.4);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(251, 191, 36, 0.2) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.3rem;
  transition: all 0.35s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.35s ease;
  filter: blur(8px);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}

.feature-card:hover .feature-icon::after {
  opacity: 0.4;
}

.feature-icon i {
  font-size: 1.3rem;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.feature-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* --- Services Section (Bento) --- */
.services {
  padding: 80px 0;
  background: var(--bg);
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.services-header p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 0.95rem;
}

.services-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(217, 119, 6, 0.04);
}

.bento-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.bento-card:hover .bento-glow {
  opacity: 1;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
}

.bento-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.bento-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  padding-top: 8px;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-action {
  gap: 10px;
}

/* --- Po Pozivu Section --- */
.po-pozivu {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.po-pozivu::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.po-pozivu-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.po-pozivu-left {
  max-width: 520px;
}

.po-pozivu-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 8px;
}

.po-pozivu h2 {
  color: #fff;
}

.po-pozivu-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.po-pozivu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.po-pozivu-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.po-pozivu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 0 30px rgba(217, 119, 6, 0.03);
  position: relative;
  overflow: hidden;
}

.po-pozivu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #E8890B, #F0A020);
}

.po-pozivu-item:hover {
  border-color: rgba(217, 119, 6, 0.35);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.2), inset 0 0 40px rgba(217, 119, 6, 0.05);
  background: rgba(15, 23, 42, 0.75);
}

.po-pozivu-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.po-pozivu-item:hover .po-pozivu-item-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

.po-pozivu-item span {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Pricing Section --- */
.pricing {
  padding: 80px 0;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.pricing-header p {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 0.95rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card.featured {
  background: var(--bg-card);
  border-color: var(--primary-border);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.pricing-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-route i {
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-amount span {
  font-size: 1.1rem;
  font-weight: 600;
}

.pricing-per {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-details {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.pricing-detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.pricing-detail-item i {
  color: var(--primary);
  font-size: 0.88rem;
  width: 18px;
  text-align: center;
}

/* --- CTA Sections --- */
.cta-bar {
  padding: 64px 0;
  background: var(--bg-alt);
  position: relative;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.cta-phone:hover {
  color: var(--white);
}

.cta-phone i {
  font-size: 1.3rem;
}

.cta-channels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.channel-badge:hover {
  border-color: var(--primary-border);
  color: var(--primary);
  background: var(--primary-light);
}

.channel-badge i {
  font-size: 1rem;
}

/* CTA Banner (full-width accent) */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.cta-banner-content .section-label {
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 16px;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 2.6rem;
}

.cta-banner p {
  color: #fff;
  margin-bottom: 32px;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cta-banner .btn-white .ri-phone-line {
  animation: phone-shake 2s ease-in-out infinite;
  display: inline-block;
}

.cta-banner .btn-white {
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 40%, #F0A020 100%);
  color: var(--dark);
  font-weight: 700;
}

.cta-banner .btn-white:hover {
  box-shadow: var(--shadow-md);
}

.cta-banner .btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.cta-banner .btn-outline-light {
  background: rgba(0, 0, 0, 0.08);
  color: #fff;
  border: 2px solid #F59E0B;
}

.cta-banner .btn-outline-light i {
  color: #fff;
}

.cta-banner .btn-outline-light:hover {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.cta-banner .btn-outline-light:hover i {
  color: var(--dark);
}

/* --- Contact / Reservation Form --- */
.contact {
  padding: 80px 0;
}

.contact .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
}

.contact-method:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.15);
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-method:hover .contact-method-icon {
  background: var(--primary);
  color: #18181B;
}

.contact-method-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact-method-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form-wrapper {
  background: #fff;
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
}

.contact-form-wrapper h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group label .required {
  color: var(--primary);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748B;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-submit {
  margin-top: 8px;
}

.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.form-message i {
  margin-right: 6px;
}

.form-message-success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
}

.form-message-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

@keyframes ri-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ri-spin {
  display: inline-block;
  animation: ri-spin 1s linear infinite;
}

.form-submit .btn {
  width: 100%;
  padding: 15px 36px;
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  padding: 56px 0 28px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
}

.footer-brand-col {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #CA6F08 0%, #E8890B 40%, #F0A020 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}

.footer-brand .logo-icon i {
  font-size: 1rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-info-link {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.footer-info-link:hover .footer-info-value {
  color: var(--primary);
}

.footer-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info-icon i {
  font-size: 1.1rem;
  color: var(--primary);
}

.footer-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-info-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.footer-info-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
  transition: var(--transition);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: center;
  padding-top: 20px;
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 150px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.page-header .page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Glow in page header */
.page-header .hero-glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
  top: -30%;
  right: -10%;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.page-header .hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  bottom: -20%;
  left: -10%;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.page-header .hero-grid-pattern {
  display: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  margin-bottom: 12px;
  color: #fff;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  color: rgba(255, 255, 255, 0.3);
}

/* --- Usluge Intro --- */
.usluge-intro {
    padding: 64px 0;
    background: #fff;
}
.usluge-intro-card {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.08);
}
.usluge-intro-side {
    width: 80px;
    min-width: 80px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 20px 0 0 20px;
    padding: 30px 0;
}
.usluge-intro-side-icon i {
    font-size: 2rem;
    color: #18181B;
}
.usluge-intro-side-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(0,0,0,0.3), transparent);
}
.usluge-intro-side-dots {
    display: flex;
    gap: 8px;
}
.usluge-intro-side-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #18181B;
    opacity: 0.3;
}
.usluge-intro-side-dots span:first-child {
    opacity: 0.6;
}
.usluge-intro-content {
    flex: 1;
    padding: 40px 36px;
}
.usluge-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    margin: 0 0 14px;
}
.usluge-intro-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .usluge-intro-side {
        width: 60px;
        min-width: 60px;
        border-radius: 16px 0 0 16px;
    }
    .usluge-intro-side i {
        font-size: 1.5rem;
    }
    .usluge-intro-card {
        border-radius: 16px;
    }
    .usluge-intro-content {
        padding: 28px 24px;
    }
}

/* --- How It Works --- */
.how-it-works {
    padding: 80px 0;
    background: #fff;
    position: relative;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 80%);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 3px;
}
.how-it-works-header {
    text-align: center;
    margin-bottom: 48px;
}
.how-it-works-header .section-label {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 16px;
}
.how-it-works-header h2 {
    font-size: 2.6rem;
    color: var(--text);
}
.how-it-works-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.how-it-works-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
}
.how-it-works-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #18181B;
    background: var(--primary);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.how-it-works-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.how-it-works-step p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}
.how-it-works-connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
    color: var(--primary);
    font-size: 1.2rem;
    opacity: 0.4;
    min-width: 40px;
    justify-content: center;
}
@media (max-width: 767px) {
    .how-it-works-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .how-it-works-step {
        max-width: 100%;
    }
    .how-it-works-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .how-it-works-header h2 {
        font-size: 2rem;
    }
}

/* --- Services Detail (subpage) --- */
.services-detail {
  padding: 64px 0 80px;
  position: relative;
}

.services-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  z-index: 3;
}

.services-detail-intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.services-detail-intro .company-tag {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.services-detail-intro p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.service-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-badge:hover {
  border-color: var(--primary-border);
  color: var(--primary);
}

.service-badge i {
  color: var(--primary);
  font-size: 0.88rem;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBILE ONLY: up to 767px --- */
@media (max-width: 767px) {
  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  /* Navbar — no top bar space, lighter bg */
  .navbar {
    top: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.2) 70%, transparent 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* Hero gradient — stays dark longer on mobile */
  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 35%, #334155 55%, #64748b 70%, #94a3b8 85%, #EBEBEA 100%);
  }

  /* Hero container — mobile spacing */
  .hero .container {
    gap: 24px;
    padding-top: 230px;
    padding-bottom: 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    margin-bottom: 32px;
  }

  /* City photo — bigger on mobile */
  .hero-city-photo {
    height: auto;
    bottom: auto;
    background: url('/assets/14.webp') center center / cover no-repeat;
    opacity: 0.90;
    padding-top: 72%;
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0) 100%);
  }

  /* Hero image — hide on mobile */
  .hero-image {
    display: none;
  }

  /* Speech bubble — compact on mobile */
  .speech-bubble {
    top: -5px;
    right: 0;
    border-radius: 16px;
    padding: 12px 16px;
  }
  .speech-bubble span { font-size: 0.8rem; line-height: 1.4; }
  .speech-bubble strong { font-size: 0.85rem; }

  /* Hero buttons — slightly smaller on mobile */
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    padding: 12px 24px;
    font-size: 0.92rem;
    width: 100%;
  }
  .hero-actions .btn-primary i {
    font-size: 1.1rem;
  }


  /* Hero text cards — compact on mobile */
  .hero-text li {
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  /* Hide hero cards on mobile */
  .hero-card {
    display: none;
  }


  /* Hide hero-info-mobile — info is now in highlights */
  .hero-info-mobile {
    display: none;
  }

  .hero-info-mobile {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-info-mobile li {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 18px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }

  .hero-info-mobile li i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  /* Section h2 overrides for mobile */
  .home-services-header h2,
  .about-split-header h2,
  .about-split-text h2,
  .safety-split-text h2,
  .features-header h2,
  .cta-banner-content h2,
  .how-it-works-header h2 {
    font-size: 1.75rem;
  }

  /* CTA banner buttons — same size on mobile */
  .cta-label {
    display: none;
  }
  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- TABLET: 768px+ --- */
@media (min-width: 768px) {
  .container { padding: 0 28px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.25rem; }

  /* Hide mobile lang switcher when top bar is visible */
  .nav-right-mobile .nav-lang { display: none; }

  /* Hide wave separator on tablet+ */

  /* Hide mobile hero info cards */
  .hero-info-mobile { display: none; }

  /* Hero — mobile-like layout up to 1099px */
  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 35%, #334155 55%, #64748b 70%, #94a3b8 85%, #EBEBEA 100%);
  }

  .hero .container {
    padding-top: clamp(230px, 52vw, 500px);
    padding-bottom: 60px;
    gap: 24px;
  }

  .hero h1 { font-size: clamp(3.2rem, 1.5rem + 3.5vw, 4.2rem); }

  .hero-content {
    text-align: center;
  }

  .hero-card {
    display: none;
  }

  .hero-image {
    display: none;
  }

  .hero-city-photo {
    height: auto;
    bottom: auto;
    background: url('/assets/14.webp') center bottom / cover no-repeat;
    opacity: 0.90;
    padding-top: 70%;
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 55%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0) 100%);
  }

  .hero-car-mobile {
    max-width: 450px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn {
    width: auto;
    padding: 20px 52px;
    font-size: 1.2rem;
  }



  .highlights {
    padding: 80px 0;
  }

  .highlight-item {
    padding: 20px 26px;
    gap: 18px;
  }

  .highlight-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.5rem;
  }

  .highlight-item h3 {
    font-size: 1.15rem;
  }

  .about-card {
    padding: 44px 40px;
  }

  .home-services { padding: 80px 0; }
  .home-service-card h3 { font-size: 1.6rem; }
  .home-service-card p { font-size: 1.15rem; }
  .home-services-header h2 { font-size: 2.8rem; }

  .features { padding: 100px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .services { padding: 100px 0; }
  .services-bento { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bento-card.bento-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .bento-card.bento-wide .bento-content { flex: 1; }
  .po-pozivu-actions { flex-direction: row; }
  .po-pozivu-right { grid-template-columns: repeat(2, 1fr); }

  .pricing-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pricing-card { padding: 40px 32px; }
  .pricing-amount { font-size: 3.2rem; }

  .cta-bar { padding: 80px 0; }
  .cta-phone { font-size: 1.8rem; }

  /* About split - tablet */
  .about-split-image img { height: 380px; }
  .about-split-features { flex-direction: row; gap: 12px; }
  .about-split-feature { flex: 1; flex-direction: column; text-align: center; padding: 20px 14px; }

  /* Safety split - tablet */
  .safety-split-image img { height: 380px; }
  .safety-checklist { grid-template-columns: 1fr 1fr; }

  .cta-banner h2 { font-size: 2.8rem; }
  .cta-banner-actions {
    flex-direction: row;
    justify-content: center;
  }

  .contact .container {
    flex-direction: row;
    gap: 48px;
    align-items: start;
  }

  .contact-info { flex: 1; }

  .contact-form-wrapper {
    flex: 1.2;
    padding: 40px 36px;
  }

  .form-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-info-items {
    flex-direction: row;
    gap: 32px;
  }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- CONTACT TABLET: single column but tablet-sized 768-1100px --- */
@media (min-width: 768px) and (max-width: 1099px) {
  .contact .container {
    flex-direction: column;
    gap: 32px;
  }
  .contact-info { flex: none; width: 100%; }
  .contact-methods {
    flex-direction: row;
    gap: 12px;
  }
  .contact-method {
    flex: 1;
    min-width: 0;
  }
  .contact-method-value {
    font-size: 0.85rem;
    word-break: break-all;
  }
  .contact-form-wrapper {
    flex: none;
    width: 100%;
    padding: 40px 36px;
  }
  .form-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  /* Services cards 4 in a row like desktop */
  .home-services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* --- DESKTOP: 1024px+ --- */
@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.3rem; }

  .nav-logo { font-size: 1.3rem; }
  .nav-logo .logo-icon { width: 42px; height: 42px; }

  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-right-mobile { display: none; }
  .mobile-menu,
  .mobile-overlay { display: none !important; }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-card {
    padding: 52px 56px;
  }

  .about-card h2 { font-size: 1.25rem; }
  .about-card p { font-size: 0.98rem; }

  /* CTA banner - desktop */
  .cta-banner { padding: 100px 0; }
  .cta-banner h2 { font-size: 2.8rem; }

  .home-services { padding: 100px 0; }
  .home-services-grid { gap: 24px; }
  .home-service-card { padding: 36px 32px; }

  .features { padding: 120px 0; }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .services { padding: 120px 0; }
  .services-bento { gap: 24px; }
  .bento-card { padding: 44px 40px; }
  .bento-content h3 { font-size: 1.4rem; }
  .po-pozivu-layout { flex-direction: row; align-items: flex-start; gap: 64px; }
  .po-pozivu-left { flex: 1; }
  .po-pozivu-right { flex: 1; }
  .po-pozivu-right { grid-template-columns: 1fr; }

  .pricing-card { padding: 44px 36px; }
  .pricing-amount { font-size: 3.4rem; }

  .contact .container { gap: 64px; }
  .contact-form-wrapper { padding: 44px; }
}

/* --- HERO SPLIT: 1100px+ (car visible) --- */
@media (min-width: 1100px) {
  .highlights { display: none; }

  .home-services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  /* About split - desktop side by side */
  .about-split { padding: 100px 0; }
  .about-split-layout {
    flex-direction: row;
    gap: 60px;
  }
  .about-split-image {
    flex: 1;
    min-width: 0;
  }
  .about-split-image img { height: 100%; min-height: 420px; }
  .about-split-text { flex: 1; }
  .about-split-text h2,
  .about-split-text p { text-align: left; }
  .about-split-features { flex-direction: column; }
  .about-split-feature { flex-direction: row; text-align: left; }

  /* Safety split - desktop side by side */
  .safety-split { padding: 100px 0; }
  .safety-split-layout {
    flex-direction: row;
    gap: 60px;
  }
  .safety-split-text { flex: 1; }
  .safety-split-image {
    flex: 1;
    min-width: 0;
  }
  .safety-split-image img { height: 100%; min-height: 420px; }
  .safety-checklist { grid-template-columns: 1fr; }

  /* Restore desktop hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 25%, #334155 50%, #94a3b8 75%, #EBEBEA 100%);
  }

  .hero-card {
    display: flex;
  }

  .hero-city-photo {
    height: 50%;
    bottom: auto;
    padding-top: 0;
    background: url('/assets/14.webp') center 75% / cover no-repeat;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 85%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 15%, rgba(0,0,0,1) 30%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 85%);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 0.5rem + 3.5vw, 3.8rem);
  }

  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: clamp(40px, 4.44px + 3.47vw, 60px);
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-content {
    flex: 1;
    max-width: none;
    text-align: center;
    align-items: flex-start;
    position: static;
    top: auto;
  }

  .hero-car-mobile {
    display: none;
  }

  .hero-card {
    margin-left: 0;
    width: 100%;
  }

  .hero-text {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-actions .btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }

  .highlight-item {
    padding: 16px 18px;
    gap: 14px;
  }

  .highlight-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1.3rem;
  }

  .highlight-item h3 {
    font-size: 0.92rem;
  }

  .hero-image {
    display: block;
    flex: 1.2;
    min-width: 0;
    max-width: clamp(380px, -46.7px + 41.67vw, 620px);
    margin-right: clamp(-200px, calc(300px - 31.25vw), -20px);
  }
}

/* --- LARGE DESKTOP: 1280px+ --- */
@media (min-width: 1280px) {
  h1 { font-size: 3.5rem; }
}
