/* ════════════════════════════════════════════════════════════
   AquaGenie – Brand Design System  (Lightened palette)
   Logo boje – osvijetljene:
     Navy   #2B4FAA  → "Aqua"  (primary – svjetliji royal blue)
     Teal   #2A9FD0  → "Genie" (secondary – vibrantniji sky teal)
     Gold   #F0C040  → lampa   (accent – svijetlo zlatna / CTA)
     Blue   #71C8F0  → kapljica (highlight)
     BG     #F7F8FC  → cool off-white pozadina
   Fonts  : Poppins (headings) · Inter (body)
   60% neutral · 30% navy · 10% gold CTA
   ════════════════════════════════════════════════════════════ */

/* ──────────────────── CSS VARIABLES ──────────────────── */
:root {
  --primary:        #2B4FAA;   /* Royal blue – svjetliji "Aqua" */
  --primary-dark:   #1A2F6B;   /* Original logo navy – samo za kontrast */
  --primary-light:  #2A9FD0;   /* Sky teal – vibrantniji "Genie" */
  --accent:         #F0C040;   /* Bright gold – lampa / CTA dugmad */
  --accent-hover:   #D4A828;   /* Hover gold – malo tamniji */
  --accent-light:   rgba(240,192,64,.14);
  --blue-light:     #71C8F0;   /* Light sky blue – kapljica */
  --white:          #FFFFFF;
  --gray-50:        #F7F8FC;   /* Cool off-white pozadina */
  --gray-100:       #EAECF0;
  --gray-200:       #D0D5DD;
  --gray-400:       #6B7A90;   /* Potamnjen – bolji kontrast za placeholder */
  --gray-600:       #3A4A5C;   /* Potamnjen – čitljiv body tekst */
  --gray-800:       #1A2535;   /* Malo tamniji za naslove */
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:      0 24px 64px rgba(0,0,0,.18);
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --transition:     0.28s cubic-bezier(.4,0,.2,1);
}

/* ──────────────────── GLOBAL ──────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Bootstrap overrides – bolji kontrast */
.text-muted {
  color: var(--gray-600) !important;
}

/* Footer bijeli tekst – pojačan kontrast */
.ht-footer .text-white-50 {
  color: rgba(255,255,255,.85) !important;
}
.ht-footer small,
.ht-footer .small {
  color: rgba(255,255,255,.88) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; }

.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.bg-light-custom { background-color: var(--gray-50) !important; }
.text-accent { color: var(--accent) !important; }
.ls-wide { letter-spacing: .12em; }

/* ──────────────────── SECTION TYPOGRAPHY ──────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 500;
}

.section-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

/* ──────────────────── NAVBAR ──────────────────── */
.ht-navbar {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: .9rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.ht-navbar.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
}

/* ── Logo ── */
.brand-logo-img {
  height: 90px;
  width: auto;
  max-width: 280px;
  flex-shrink: 0;
  object-fit: contain;
  transition: filter var(--transition), transform var(--transition);
}

.navbar-brand:hover .brand-logo-img {
  filter: drop-shadow(0 3px 10px rgba(240,192,64,.50));
  transform: scale(1.04);
}

.brand-logo-img--footer {
  height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.footer-logo-wrap {
  display: inline-block;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px 18px;
}

@media (max-width: 575.98px) {
  .brand-logo-img         { height: 64px; }
  .brand-logo-img--footer { height: 72px; }
}

/* AquaGenie brand split text */
.brand-aqua  { color: #FFFFFF; font-weight: 800; }
.brand-genie { color: var(--blue-light); font-weight: 800; }

/* Gold akcenat za hero headline */
.text-accent-gold { color: var(--accent) !important; }

/* Teal akcenat za linkove/ikonice */
.text-teal { color: var(--primary-light) !important; }

.brand-icon {
  width: 40px;
  height: 40px;
  /* Bright gold gradient – nova osvježena zlatna */
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ht-navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary-dark) !important;
  padding: .4rem .65rem !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.ht-navbar .nav-link:hover,
.ht-navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(43,79,170,.08);
}

/* Notfall nav button */
.btn-notfall {
  background: var(--accent) !important;
  border: none !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  border-radius: var(--radius-sm) !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.btn-notfall:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,192,64,.45) !important;
}

/* ──────────────────── HERO ──────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  /* Svjetliji royal blue → sky teal – osvježena paleta */
  background:
    linear-gradient(135deg, rgba(30,52,100,.95) 0%, rgba(43,79,170,.90) 45%, rgba(42,159,208,.82) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Bright gold glow – osvježen za novu paletu */
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(240,192,64,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Hero animated background grid */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.notfall-badge {
  background: rgba(240,192,64,.15);
  border: 1px solid rgba(240,192,64,.35);
  border-radius: 100px;
  padding: .45rem 1rem;
  display: inline-flex;
}

.notfall-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
}

.text-accent { color: var(--accent) !important; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.92);
  max-width: 520px;
}

.text-white-75 { color: rgba(255,255,255,.90) !important; }

.btn-hero-lg {
  padding: .85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  letter-spacing: .01em;
  transition: all var(--transition);
}

/* Hero stats */
.hero-stats { gap: 1.5rem; }

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  margin-top: .2rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  align-self: center;
}

/* Hero right cards */
.hero-card-wrap {
  position: relative;
}

.hero-emergency-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.emergency-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-phone-link {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  transition: all var(--transition);
}

.hero-phone-link:hover {
  border-color: var(--accent);
  background: rgba(240,192,64,.12);
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255,255,255,.16);
  border-radius: 100px;
  padding: .2rem .75rem;
  border: 1px solid rgba(255,255,255,.30);
}

.hero-service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.hs-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(240,192,64,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg { display: block; }

/* ──────────────────── ÜBER UNS ──────────────────── */
.ueber-img-wrap {
  position: relative;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ueber-img-bg {
  position: absolute;
  inset: 0;
  /* Svjetliji royal blue → vibrantniji sky teal */
  background: linear-gradient(160deg, #1A2F6B 0%, #2B4FAA 45%, #2A9FD0 100%);
}

.ueber-img-content {
  position: relative;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ueber-stat-badge {
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  align-self: flex-start;
}

.ueber-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.ueber-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  gap: .5rem;
  text-align: center;
}

.ueber-icon-item i { font-size: 1.5rem; color: var(--accent); }

.ueber-feature {
  font-size: .9rem;
  color: var(--gray-800);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  /* Teal "Genie" boja – sekundarni brand */
  background: var(--primary-light);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: .75rem 1.75rem;
  border: 2px solid var(--primary-light);
  transition: all var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,159,208,.40);
}

.btn-outline-primary-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary) !important;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: .75rem 1.75rem;
  border: 2px solid var(--primary);
  transition: all var(--transition);
}

.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ──────────────────── LEISTUNGEN ──────────────────── */
.leistung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.leistung-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.leistung-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.leistung-card:hover .leistung-icon-wrap {
  background: var(--accent);
  color: var(--white);
}

.leistung-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.leistung-text {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex-grow: 1;
  margin: .75rem 0 1.25rem;
}

.leistung-link {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
  margin-top: auto;
}

.leistung-link:hover { gap: .35rem; color: var(--accent-hover); }

/* Leistungen – bullet lista */
.leistung-punkte {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.leistung-punkte li {
  font-size: .84rem;
  color: var(--gray-600);
  display: flex;
  align-items: flex-start;
  gap: .1rem;
  line-height: 1.5;
}

.leistung-punkte li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ──────────────────── MARKEN ──────────────────── */
.marken-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.marken-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

@media (max-width: 1199.98px) { .marken-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 767.98px)  { .marken-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479.98px)  { .marken-grid { grid-template-columns: repeat(2, 1fr); } }

.marken-item {
  transition: transform var(--transition);
}

.marken-item:hover { transform: translateY(-3px); }

.marken-logo-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.1rem .75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}

.marken-item:hover .marken-logo-wrap {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(240,192,64,.18);
}

.marken-name {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}

.marken-kat {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}

.marken-hinweis {
  font-size: .9rem;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: .9rem 1.5rem;
  display: inline-block;
}

/* ──────────────────── WARUM WIR ──────────────────── */
.grund-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  height: 100%;
  transition: all var(--transition);
}

.grund-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(240,192,64,.20);
  transform: translateY(-4px);
}

.grund-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: all var(--transition);
}

.grund-card:hover .grund-icon-wrap {
  background: var(--accent);
  color: var(--white);
}

.grund-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: .5rem;
}

.grund-text {
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Trust bar – royal blue → sky teal */
.trust-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #1E7AB8 50%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.trust-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  font-weight: 500;
  margin-top: .35rem;
}

/* ──────────────────── EMERGENCY CTA ──────────────────── */
.emergency-cta-section {
  /* Royal blue → sky teal – svjetlija, vibrantnija paleta */
  background: linear-gradient(135deg, var(--primary) 0%, #1E6FA8 50%, var(--primary-light) 100%);
}

.emergency-cta-inner {
  background: rgba(240,192,64,.12);
  border: 1px solid rgba(240,192,64,.28);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
}

.emergency-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(240,192,64,.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--accent);
  animation: pulse-accent 2s ease-in-out infinite;
}

@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,64,.5); }
  50% { box-shadow: 0 0 0 16px rgba(240,192,64,0); }
}

.emergency-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}

.emergency-cta-text {
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  margin: 0;
}

.btn-notfall-lg {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--primary-dark) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(240,192,64,.40);
}

.btn-notfall-lg:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,192,64,.55);
}

.emergency-hint {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-align: right;
  letter-spacing: .02em;
}

/* ──────────────────── BEWERTUNGEN ──────────────────── */
.bewertung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bewertung-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bewertung-quote {
  font-size: 3rem;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: .5rem;
  font-family: serif;
}

.bewertung-text {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.bewertung-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* Teal "Genie" boja */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bewertung-verified {
  font-size: .75rem;
  font-weight: 600;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 100px;
  padding: .2rem .6rem;
}

/* ──────────────────── KONTAKT ──────────────────── */
.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  color: inherit;
  transition: all var(--transition);
}

a.kontakt-info-item:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  transform: translateX(4px);
}

.kontakt-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.response-hint {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: .9rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-800);
}

.map-placeholder { position: relative; }

/* Kontakt form */
.kontakt-form-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.kontakt-form-header {
  /* Royal blue → sky teal – svjetliji header */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 1.75rem 2rem;
}

.kontakt-form-body {
  background: var(--white);
  padding: 2rem;
}

.form-label-custom {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: .4rem;
  display: block;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}

.form-control-custom {
  width: 100%;
  padding: .75rem 1rem .75rem 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}

.form-control-custom:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,98,26,.1);
}

.form-control-custom.is-invalid {
  border-color: #dc3545;
}

.form-control-custom::placeholder { color: var(--gray-400); }

.field-error,
.jquery-error {
  font-size: .8rem;
  color: #dc3545;
  margin-top: .3rem;
  display: none;
}

.field-error { display: block; }

.dsgvo-hint {
  font-size: .8rem;
  color: var(--gray-600);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  border: 1px solid var(--gray-100);
}

.dsgvo-hint a {
  color: var(--accent);
  font-weight: 600;
}

.btn-submit-form {
  background: var(--accent) !important;
  color: var(--white) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md) !important;
  padding: .9rem !important;
  border: none !important;
  transition: all var(--transition) !important;
}

.btn-submit-form:hover:not(:disabled) {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,98,26,.35) !important;
}

.btn-submit-form:disabled {
  opacity: .7;
}

.alert-erfolg {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.erfolg-icon {
  width: 48px;
  height: 48px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ──────────────────── FOOTER ──────────────────── */
.ht-footer {
  /* Svjetliji footer – royal blue umjesto skoro-crnog */
  background: linear-gradient(160deg, #1E3580 0%, #2347A0 60%, #1E6FA8 100%);
}

.footer-links li { margin-bottom: .45rem; }

.footer-links a {
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-links li:not(a) {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  margin-bottom: .45rem;
}

.footer-legal {
  color: rgba(255,255,255,.80);
  font-size: .8rem;
  transition: color var(--transition);
}

.footer-legal:hover { color: var(--white); }

.legal-section {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

/* ──────────────────── FLOATING CALL BTN ──────────────────── */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(232,98,26,.5);
  z-index: 9999;
  transition: all var(--transition);
}

.floating-call-btn:hover {
  transform: scale(1.12);
  background: var(--accent-hover);
}

.call-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: call-ring 2s ease-out infinite;
  opacity: 0;
}

@keyframes call-ring {
  0% { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ──────────────────── AOS ANIMATIONS ──────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

@media (max-width: 767.98px) {
  [data-aos="fade-right"],
  [data-aos="fade-left"] { transform: translateY(16px); }
  [data-aos="fade-right"].aos-animate,
  [data-aos="fade-left"].aos-animate { transform: translateY(0); }
}

/* ──────────────────── RESPONSIVE ──────────────────── */

/* Tablet landscape & below (992px) */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding-top: 100px; padding-bottom: 80px; }
  .hero-title { font-size: 2.2rem; }

  /* Über uns: wrap se smanji ali ostane vizualno */
  .ueber-img-wrap { height: 280px; }
  .ueber-img-content { padding: 1.5rem; }
  .ueber-stat-badge { padding: 1rem 1.25rem; }
  .ueber-stat-badge .fs-2 { font-size: 1.4rem !important; }
  .ueber-stat-badge .fs-5 { font-size: 1rem !important; }
  .ueber-icon-item { padding: .75rem .5rem; font-size: .75rem; }
  .ueber-icon-item i { font-size: 1.25rem; }

  .trust-bar { border-radius: var(--radius-lg); }
  .emergency-hint { text-align: center; }
  .floating-call-btn { width: 52px; height: 52px; font-size: 1.3rem; bottom: 1.5rem; right: 1.5rem; }
  .kontakt-form-header { padding: 1.5rem 1.75rem 1.25rem; }
}

/* Tablet portrait (768px) */
@media (max-width: 767.98px) {
  .hero-title { font-size: 1.9rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-divider { height: 30px; }
  .section-title { font-size: 1.6rem; }
  .section-eyebrow { font-size: .7rem; }

  /* Über uns: na mobilnom col-lg-6 postaje full width */
  .ueber-img-wrap { height: 240px; border-radius: var(--radius-lg); }
  .ueber-img-content { padding: 1.25rem; flex-direction: row; align-items: center; gap: 1rem; }
  .ueber-stat-badge { align-self: center; flex-shrink: 0; }
  .ueber-icon-grid { grid-template-columns: repeat(4, 1fr); gap: .5rem; }
  .ueber-icon-item { padding: .6rem .4rem; font-size: .7rem; }
  .ueber-icon-item i { font-size: 1.1rem; }

  /* Kontakt forma */
  .kontakt-form-body { padding: 1.25rem; }
  .kontakt-form-header { padding: 1.25rem 1.5rem 1rem; }
  .map-placeholder { height: 160px; }
  .kontakt-info-item { padding: .75rem 1rem; }

  /* Emergency CTA */
  .emergency-cta-inner { padding: 1.75rem 1.25rem; text-align: center; }
  .emergency-cta-title { font-size: 1.3rem; }
  .btn-notfall-lg { width: 100%; justify-content: center; }
  .emergency-hint { text-align: center; }

  /* Trust bar */
  .trust-bar { padding: 1.75rem 1rem; }
  .trust-num { font-size: 1.5rem; }

  /* Buttons hero */
  .btn-hero-lg { padding: .75rem 1.5rem; font-size: .95rem; }

  /* Marken */
  .marken-logo-wrap { padding: .75rem .5rem; }
  .marken-name { font-size: .8rem; }

  /* Footer logo wrap */
  .footer-logo-wrap { display: block; text-align: center; }

  /* Bewertungen */
  .bewertung-card { padding: 1.5rem; }
}

/* Mobile (576px) */
@media (max-width: 575.98px) {
  .hero-title { font-size: 1.65rem; line-height: 1.3; }
  .hero-subtitle { font-size: .95rem; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 0;
    justify-items: center;
    text-align: center;
  }
  .hero-stat-divider { display: none; }
  .notfall-badge { font-size: .7rem; }

  /* Über uns: još kompaktniji */
  .ueber-img-wrap { height: 200px; }
  .ueber-img-content { flex-direction: column; justify-content: center; gap: .75rem; padding: 1rem; }
  .ueber-stat-badge { width: 100%; text-align: center; padding: .75rem; }
  .ueber-stat-badge .fs-2 { font-size: 1.2rem !important; }
  .ueber-icon-grid { grid-template-columns: repeat(4, 1fr); gap: .4rem; }
  .ueber-icon-item { padding: .5rem .25rem; font-size: .65rem; }
  .ueber-icon-item i { font-size: 1rem; }
  .ueber-icon-item span { display: none; } /* sakrij tekst, ostave samo ikone na malim ekranima */

  /* Leistungen */
  .leistung-card { padding: 1.25rem; }
  .leistung-punkte { font-size: .82rem; }

  /* Grund cards */
  .grund-card { padding: 1.25rem; }

  /* Kontakt forma */
  .kontakt-form-body { padding: 1rem; }
  .response-hint { font-size: .82rem; padding: .75rem 1rem; }
  .dsgvo-hint { font-size: .78rem; }

  /* Navbar */
  .brand-logo-img { height: 52px; }

  /* Footer */
  .brand-logo-img--footer { height: 64px; }
  .ht-footer { text-align: center; }
  .ht-footer .col-lg-4 { text-align: center; }
  .footer-logo-wrap { margin: 0 auto; }

  /* Legal sections */
  .legal-section { padding: 1.25rem !important; }

  /* Floating btn – malo manji */
  .floating-call-btn { width: 48px; height: 48px; font-size: 1.2rem; bottom: 1rem; right: 1rem; }
}
