/* includes/global-styles.css */
/* ===========================================
   GLASS SERVICE BOŠNJACE - GLOBAL STYLES
   Centralizovani stilovi za ceo sajt
   =========================================== */

/* ===========================================
   CSS VARIJABLE - JEDAN IZVOR ISTINE
   =========================================== */
:root {
  /* Primary Colors */
  --primary-dark: #181a20;
  --primary-light: #23262f;
  --secondary-dark: #2a2d3a;

  /* Accent Colors */
  --accent-red: #c10000;
  --accent-red-light: #e63946;
  --accent-red-dark: #8a0000;
  --accent-blue: #3498db;
  --accent-blue-light: #5dade2;
  --accent-blue-dark: #2980b9;

  /* Text Colors */
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --text-gray: #bfc9d1;
  --white: #ffffff;

  /* Border Colors */
  --border-color: #353945;
  --border-light: rgba(255, 255, 255, 0.1);

  /* Status Colors */
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --warning-color: #f39c12;

  /* Gradients - KONZISTENTNI */
  --gradient-primary: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  --gradient-badge: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  --gradient-red: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  --gradient-blue: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.3);
  --shadow-blue: 0 4px 20px rgba(52, 152, 219, 0.3);
  --shadow-red: 0 4px 20px rgba(193, 0, 0, 0.3);

  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-mobile: 50px 0;
  --container-padding: 0 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.4s ease;

  /* Z-indexes */
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal: 1100;
  --z-tooltip: 1200;

  /* Header */
  --header-height: 80px;
  --header-height-mobile: 70px;
}

/* ===========================================
   BASE STYLES
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: var(--text-light);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--text-muted);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--accent-blue-light);
}

/* ===========================================
   CONTAINER
   =========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

/* ===========================================
   SECTION UNIVERSAL
   =========================================== */
.section-universal {
  background: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

/* ===========================================
   MAIN CONTENT
   =========================================== */
.main-content {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* ===========================================
   BADGES - UNIVERZALNI STIL
   =========================================== */
.badge,
.hero-badge,
.service-badge,
.services-badge,
.contact-badge,
.map-badge,
.about-badge,
.why-choose-badge,
.age-network-badge,
.partners-badge,
.quote-badge,
.insurance-types-badge,
.why-us-badge,
.process-badge,
.stats-badge,
.testimonials-badge,
.cta-badge,
.adas-badge,
.technology-badge,
.brands-badge,
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
  text-transform: none;
}

.badge i,
.hero-badge i,
.service-badge i,
.services-badge i,
.contact-badge i,
.map-badge i,
.about-badge i,
.why-choose-badge i,
.age-network-badge i,
.partners-badge i,
.quote-badge i,
.insurance-types-badge i,
.why-us-badge i,
.process-badge i,
.stats-badge i,
.testimonials-badge i,
.cta-badge i,
.adas-badge i,
.technology-badge i,
.brands-badge i,
.faq-badge i {
  font-size: 0.9rem;
}

/* Premium/Featured Badge - manji stil */
.premium-badge,
.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  color: var(--white);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(193, 0, 0, 0.3);
}

/* ===========================================
   BUTTONS - KONZISTENTNI STILOVI
   =========================================== */

/* Primary Button */
.btn-primary,
.cta-btn-primary,
.service-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue), var(--accent-red));
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease, background-position 0.5s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

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

.btn-primary:hover,
.cta-btn-primary:hover,
.service-btn:hover,
.cta-btn:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
  color: var(--white);
}

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

/* Secondary Button */
.btn-secondary,
.cta-btn-secondary,
.service-contact-btn,
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover,
.cta-btn-secondary:hover,
.service-contact-btn:hover,
.cta-btn-outline:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* Full Width Button */
.cta-btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-normal);
  margin-bottom: 12px;
}

.cta-btn-full:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

/* Header Buttons */
.btn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-header-primary {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-header-primary:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.btn-header-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-blue);
}

.btn-header-secondary:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================================
   CARDS
   =========================================== */
.card {
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border-color);
  padding: 30px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

/* Service Card */
.service-card {
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  border: 2px solid var(--accent-blue);
  padding: 30px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-red);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Sidebar Card */
.sidebar-card {
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(52, 152, 219, 0.2);
  padding: 30px;
  transition: var(--transition-normal);
}

.sidebar-card:hover {
  border-color: var(--accent-blue);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(145deg, rgba(52, 152, 219, 0.1), rgba(193, 0, 0, 0.1));
  border: 2px solid var(--accent-blue);
}

/* ===========================================
   ICONS
   =========================================== */
.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

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

.icon-square {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

/* ===========================================
   FEATURE ITEMS
   =========================================== */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(52, 152, 219, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(52, 152, 219, 0.15);
  transition: var(--transition-normal);
}

.feature-item:hover {
  background: rgba(52, 152, 219, 0.12);
  transform: translateX(5px);
}

.feature-item i {
  color: var(--accent-blue);
  font-size: 1rem;
}

.feature-item span {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===========================================
   LISTS
   =========================================== */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefits-list li i {
  color: var(--accent-blue);
  font-size: 1rem;
}

/* ===========================================
   PROCESS STEPS
   =========================================== */
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(52, 152, 219, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent-blue);
  transition: var(--transition-normal);
}

.process-step:hover {
  background: rgba(52, 152, 219, 0.1);
  transform: translateX(5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================================
   INFO BOX / WARNING BOX
   =========================================== */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(52, 152, 219, 0.1);
  border: 1px solid rgba(52, 152, 219, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.info-box i {
  color: var(--accent-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-box p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(193, 0, 0, 0.1);
  border: 1px solid rgba(193, 0, 0, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.warning-box i {
  color: var(--accent-red);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-box p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.success-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.success-box i {
  color: var(--success-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.breadcrumb-nav {
  background: var(--primary-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '→';
  margin-left: 8px;
  color: var(--accent-blue);
  font-weight: bold;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-normal);
}

.breadcrumb-item a:hover {
  color: var(--accent-blue);
}

.breadcrumb-item.active {
  color: var(--text-light);
  font-weight: 500;
}

/* ===========================================
   SECTION TITLES
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================================
   DIVIDERS
   =========================================== */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  margin: 40px 0;
  opacity: 0.5;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
  }
}

@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(193, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(193, 0, 0, 0);
  }
}

/* Animation: enter via translate only (opacity stays 1 so Lighthouse axe-core
   can measure real contrast even before IntersectionObserver fires) */
.section-animate {
  opacity: 1;
  transform: translateY(30px);
  transition: transform 0.6s ease;
  will-change: transform;
}

.section-animate.visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-animate { transform: none; transition: none; }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 992px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .section-title {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary,
  .cta-btn,
  .cta-btn-outline {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --container-padding: 0 16px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 24px;
  }

  .sidebar-card {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 12px;
    --header-height: 70px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.15rem; }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary,
  .cta-btn,
  .cta-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .service-card {
    padding: 20px;
  }

  .badge,
  .service-badge,
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 15px auto;
  }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.bg-primary { background: var(--primary-dark); }
.bg-secondary { background: var(--primary-light); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none !important; }
.visible { visibility: visible !important; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===========================================
   CUSTOM MODAL / ALERT / CONFIRM DIALOG
   =========================================== */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.custom-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-modal {
  background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
  border-radius: 20px;
  padding: 0;
  max-width: 450px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(0.9) translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.custom-modal-overlay.active .custom-modal {
  transform: scale(1) translateY(0);
}

/* Modal Header with gradient bar */
.custom-modal-header {
  background: var(--gradient-primary);
  padding: 25px 30px;
  position: relative;
}

.custom-modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.custom-modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.custom-modal-icon i {
  font-size: 2rem;
  color: #fff;
}

/* Different icon types */
.custom-modal-icon.icon-warning {
  background: rgba(243, 156, 18, 0.3);
}

.custom-modal-icon.icon-error {
  background: rgba(231, 76, 60, 0.3);
}

.custom-modal-icon.icon-success {
  background: rgba(39, 174, 96, 0.3);
}

.custom-modal-icon.icon-info {
  background: rgba(52, 152, 219, 0.3);
}

.custom-modal-icon.icon-question {
  background: rgba(155, 89, 182, 0.3);
}

/* Modal Body */
.custom-modal-body {
  padding: 30px;
}

.custom-modal-title {
  color: var(--text-light);
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.custom-modal-message {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Modal Buttons */
.custom-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 0 30px 30px;
  flex-wrap: wrap;
}

.custom-modal-btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 130px;
  font-family: inherit;
}

.custom-modal-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* Primary button (OK, Da, Potvrdi) */
.custom-modal-btn.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(193, 0, 0, 0.3);
}

.custom-modal-btn.btn-primary i {
  color: #fff;
}

.custom-modal-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 0, 0, 0.4);
}

.custom-modal-btn.btn-primary:active {
  transform: translateY(0);
}

/* Secondary button (Odustani, Ne) */
.custom-modal-btn.btn-secondary {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-muted);
}

.custom-modal-btn.btn-secondary i {
  color: inherit;
}

.custom-modal-btn.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.05);
}

/* Success button */
.custom-modal-btn.btn-success {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.custom-modal-btn.btn-success i {
  color: #fff;
}

.custom-modal-btn.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* Danger button */
.custom-modal-btn.btn-danger {
  background: var(--gradient-red);
  color: #fff;
  box-shadow: 0 4px 15px rgba(193, 0, 0, 0.3);
}

.custom-modal-btn.btn-danger i {
  color: #fff;
}

.custom-modal-btn.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 0, 0, 0.4);
}

/* Input field for prompt */
.custom-modal-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  margin-top: 20px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-modal-input:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
}

.custom-modal-input::placeholder {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
  .custom-modal {
    max-width: 95%;
    margin: 10px;
  }

  .custom-modal-header {
    padding: 20px;
  }

  .custom-modal-icon {
    width: 60px;
    height: 60px;
  }

  .custom-modal-icon i {
    font-size: 1.6rem;
  }

  .custom-modal-body {
    padding: 25px 20px;
  }

  .custom-modal-title {
    font-size: 1.2rem;
  }

  .custom-modal-message {
    font-size: 0.95rem;
  }

  .custom-modal-buttons {
    padding: 0 20px 25px;
    flex-direction: column;
  }

  .custom-modal-btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* Animation for shake effect (error) */
@keyframes modalShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.custom-modal.shake {
  animation: modalShake 0.5s ease;
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
  body {
    background: white;
    color: black;
  }

  .auto-service-header,
  .auto-service-footer,
  .breadcrumb-nav,
  .global-cta {
    display: none !important;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* === Migrated from inline <style> in index.php on 20260501_145025 === */
    :root {
      --primary-dark: #181a20;
      --secondary-dark: #2a2d3a;
      --accent-blue: #3498db;
      --accent-red: #c10000;
      --text-light: #ffffff;
      --text-muted: #a0a0a0;
      --border-color: #353945;
      --card-bg: #2a2d3a;
      --success-color: #27ae60;
      --error-color: #e74c3c;
    }

    body {
      background: var(--primary-dark) !important;
      color: var(--text-light);
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .main-content {
      background: var(--primary-dark);
      min-height: 100vh;
      position: relative;
      z-index: 10;
    }

    .section-universal {
      background: var(--primary-dark);
      color: var(--text-light);
      position: relative;
      z-index: 10;
    }

    /* Osiguraj da se svi elementi vide */
    section {
      position: relative;
      z-index: 10;
    }

    .container {
      position: relative;
      z-index: 10;
    }

    /* Osiguraj da se loader sakrije */
    #global-loader {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    /* Osiguraj da se sadržaj vidi */
    .main-content,
    .section-universal,
    section,
    .container {
      position: relative !important;
      z-index: 10 !important;
      visibility: visible !important;
      opacity: 1 !important;
    }

    /* Osiguraj da se svi elementi vide */
    * {
      pointer-events: auto !important;
    }

    /* Sakrij sve pseudo-elemente koji mogu da prekrivaju sadržaj */
    *::before,
    *::after {
      pointer-events: none !important;
    }

    /* Osiguraj da se body i html vide */
    html, body {
      overflow: visible !important;
      position: relative !important;
      z-index: 1 !important;
    }

/* === Sticky mobile CTA bar (added 2026-05-01) === */
.mobile-sticky-cta { display: none; }
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: rgba(15, 23, 42, 0.97);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        padding: 0.65rem;
        gap: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    }
    .mobile-sticky-cta a {
        flex: 1;
        padding: 0.85rem 0.5rem;
        text-align: center;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        min-height: 44px;
    }
    .mobile-sticky-cta .msc-call {
        background: #c10000;
        color: #fff;
    }
    .mobile-sticky-cta .msc-quote {
        background: transparent;
        color: #e2e8f0;
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    body { padding-bottom: 64px; }
    /* Sakrij na error / privacy / terms stranicama */
    .mobile-sticky-cta.hide { display: none; }
}

/* === A11y contrast hardening (audit 2026-05-08, max specificity) === */
html body section.stats-modern .additional-stat-value,
html body section.stats-modern .additional-stat-card .additional-stat-value { color:#5dade2 !important; }
html body section.stats-modern .additional-stat-card:hover .additional-stat-value { color:#ff8a8a !important; }
html body section.stats-modern .additional-stat-label,
html body section.stats-modern .additional-stat-card .additional-stat-label { color:#ffffff !important; opacity:1 !important; }
html body section.stats-modern .additional-stat-feature,
html body section.stats-modern .additional-stat-card .additional-stat-feature { color:#ffffff !important; background:rgba(52,152,219,0.22) !important; }
html body section.stats-modern .additional-stat-feature i { color:#2ecc71 !important; }
html body section.stats-modern .stat-number { color:#5dade2 !important; }
html body section.stats-modern .stat-card:hover .stat-number { color:#ff8a8a !important; }
html body section.stats-modern .stat-title { color:#ffffff !important; }
html body section.stats-modern .stat-description { color:#ffffff !important; opacity:0.85 !important; }
html body section.testimonials-modern .testimonials-title,
html body section.testimonials-modern .testimonials-header .testimonials-title { color:#ffffff !important; }
html body section.testimonials-modern .testimonials-subtitle,
html body section.testimonials-modern .testimonials-header .testimonials-subtitle { color:#e6edf3 !important; }

/* Disable color/background-color transitions on hover (prevents axe-core mid-state contrast false positive) */
html body section.stats-modern .additional-stat-card,
html body section.stats-modern .additional-stat-card *,
html body section.stats-modern .stat-card,
html body section.stats-modern .stat-card * {
    transition-property: transform, box-shadow, border-color !important;
}

/* includes/page-overrides.css */
/* Shared page-level overrides — extracted from inline <body><style> blocks
   in kontakt.php, online-ponuda.php, o-nama.php, usluge.php, osiguranje.php
   to satisfy W3C HTML5 (no <style> in body). */

:root {
  --primary-dark: #181a20;
  --secondary-dark: #2a2d3a;
  --accent-blue: #3498db;
  --accent-red: #c10000;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: #353945;
  --card-bg: #2a2d3a;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --white: #ffffff;
  --gray: #bfc9d1;
  --dark-bg-color: #181a20;
  --white-color: #ffffff;
  --accent-color: #3498db;
}

body {
  background: var(--primary-dark) !important;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.main-content {
  background: var(--primary-dark);
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.section-universal {
  background: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  z-index: 10;
}

section {
  position: relative;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  min-height: auto !important;
}

.container {
  position: relative;
  z-index: 10;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.process,
.adas-calibration,
.technology,
.brands,
.faq {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

#global-loader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

.main-content,
.section-universal,
section,
.container {
  position: relative !important;
  z-index: 10 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

* { pointer-events: auto !important; }
*::before, *::after { pointer-events: none !important; }

html, body {
  overflow-x: hidden !important;
  overflow-y: auto !important;
  position: relative !important;
  z-index: 1 !important;
}

/* W3C fix for radio-card pattern: <span> needs display:block
   to behave like <div> when used inside <label>. */
.client-type-card,
.service-card,
.glass-type-card,
.location-card {
  display: block;
}

/* W3C fix: <p> inside <span> not allowed -> use <span class="location-desc">
   styled as block element */
.location-desc {
  display: block;
  margin-top: 0.25rem;
}

/* includes/header/header.css */
/* Header - Modern Dark Redesign */

:root {
  --primary-light: #23262f;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --accent-blue: #3498db;
  --accent-red: #c10000;
  --white: #ffffff;
  --border-color: #3a3f4a;
  --menu-bg: rgba(26, 29, 36, 0.98);
  --menu-border: rgba(52, 152, 219, 0.3);
  --mobile-menu-width: 320px;
  --mobile-menu-bg: #1a1d24;
  --mobile-menu-overlay: rgba(0, 0, 0, 0.7);
}

/* Fallback for older browsers */
.auto-service-header {
  background: #23262f;
  color: #ffffff;
}

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

.auto-service-header {
  background: var(--primary-light);
  color: var(--text-light);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-blue);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 80px;
  display: flex;
  align-items: center;
}

.auto-service-header.scrolled {
  background: rgba(35, 38, 47, 0.95);
  -webkit-backdrop-filter: blur(20px);
  -moz-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.header-logo:hover {
  color: var(--accent-blue);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #c10000;
  background: -webkit-linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  background: -moz-linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  background: -o-linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

/* Logo image styles */
.logo-image {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-logo:hover .logo-image {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.logo-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--accent-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-header {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-header-primary {
  background: var(--accent-blue);
  color: var(--white);
}

.btn-header-primary:hover {
  background: #2980b9;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
  -moz-box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-header-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent-blue);
}

.btn-header-secondary:hover {
  background: var(--accent-blue);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Button icons */
.btn-header i {
  font-size: 1rem;
  line-height: 1;
}

.btn-header span {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mobile-menu-overlay);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--mobile-menu-width);
  height: 100vh;
  background: var(--mobile-menu-bg);
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  border-left: 2px solid var(--accent-blue);
}

.mobile-menu-sidebar.active {
  right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(52, 152, 219, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-logo .logo-icon {
  width: 35px;
  height: 35px;
  font-size: 1.2rem;
}

.mobile-logo .logo-title {
  font-size: 1rem;
  margin: 0;
}

.mobile-logo .logo-subtitle {
  font-size: 0.7rem;
  margin: 0;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(52, 152, 219, 0.2);
  color: var(--accent-blue);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(52, 152, 219, 0.1);
  color: var(--accent-blue);
  border-left-color: var(--accent-blue);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-nav-link span {
  font-size: 1rem;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: rgba(52, 152, 219, 0.05);
}

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

.mobile-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--accent-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.mobile-contact-btn i {
  font-size: 1.1rem;
}

.mobile-contact-btn span {
  font-size: 0.9rem;
}

/* Always show hamburger menu on all devices */
.desktop-nav {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
}

/* Responsive Design */
@media (max-width: 992px) {
  .header-cta {
    display: flex;
    gap: 8px;
  }

  .btn-header {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .btn-header span {
    display: none;
  }

  .header-container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .btn-header {
    padding: 8px 16px;
    gap: 6px;
  }

  .btn-header i {
    font-size: 0.9rem;
  }

  .btn-header span {
    font-size: 0.85rem;
  }
}

@media (min-width: 1201px) {
  .btn-header {
    padding: 12px 24px;
    gap: 10px;
  }

  .btn-header i {
    font-size: 1.1rem;
  }

  .btn-header span {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    gap: 12px;
  }

  .header-cta {
    gap: 6px;
  }

  .btn-header {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-subtitle {
    font-size: 0.7rem;
  }

  .container {
    padding: 0 16px;
  }

  .mobile-menu-sidebar {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .auto-service-header {
    padding: 10px 0;
    height: 65px;
  }

  .header-container {
    gap: 8px;
  }

  .header-cta {
    gap: 4px;
  }

  .btn-header {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .logo-title {
    font-size: 0.9rem;
  }

  .logo-subtitle {
    font-size: 0.65rem;
  }

  .container {
    padding: 0 12px;
  }

  .mobile-menu-sidebar {
    width: 260px;
  }

  .mobile-menu-header {
    padding: 15px;
  }

  .mobile-nav-link {
    padding: 12px 15px;
  }

  .mobile-menu-footer {
    padding: 15px;
  }
}

@media (max-width: 360px) {
  .header-container {
    gap: 6px;
  }

  .auto-service-header {
    height: 60px;
    padding: 8px 0;
  }

  .header-cta {
    gap: 3px;
  }

  .btn-header {
    padding: 4px 6px;
    font-size: 0.65rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }

  .logo-title {
    font-size: 0.8rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .container {
    padding: 0 10px;
  }

  .mobile-menu-sidebar {
    width: 240px;
  }
}

/* Print styles */
@media print {
  .auto-service-header {
    position: static;
    background: #ffffff;
    color: #000000;
    border-bottom: 1px solid #000000;
  }

  .mobile-menu-toggle,
  .mobile-menu-overlay,
  .mobile-menu-sidebar {
    display: none !important;
  }
}

/* includes/footer/footer.css */
/* Footer - Modern Dark Redesign */
:root {
  --primary-dark: #181a20;
  --primary-light: #23262f;
  --accent-red: #c10000;
  --accent-blue: #3498db;
  --white: #fff;
  --gray: #bfc9d1;
  --text-light: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: #353945;
}

.auto-service-footer {
  background: var(--primary-light);
  color: var(--text-light);
  padding: 48px 0 24px 0;
  margin-top: 0;
  border-top: 2px solid var(--accent-blue);
  position: relative;
  overflow: hidden;
  clear: both;
  z-index: 100;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

/* Footer Logo Styles */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-logo h3 {
  margin: 0;
  color: var(--accent-blue);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-section h3 {
  color: var(--accent-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: var(--accent-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52,152,219,0.3);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-info i {
  color: var(--accent-blue);
  font-size: 1rem;
  width: 16px;
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--accent-blue);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-links a::before {
  content: '→';
  color: var(--accent-blue);
  font-weight: bold;
}

.working-hours p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.working-hours strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Footer Friends Section */

/* Footer Sitemap Section */
.footer-sitemap {
  margin: 24px 0;
}

.footer-sitemap-content {
  background: rgba(52, 152, 219, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(52, 152, 219, 0.1);
  transition: all 0.3s ease;
}

.footer-sitemap-content:hover {
  background: rgba(52, 152, 219, 0.08);
  border-color: rgba(52, 152, 219, 0.2);
}

.footer-sitemap-content h4 {
  color: var(--accent-blue);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sitemap-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.sitemap-column h5 {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(52, 152, 219, 0.3);
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 6px;
}

.sitemap-column ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.sitemap-column ul li a:hover {
  color: var(--accent-blue);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .sitemap-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sitemap-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-sitemap-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .sitemap-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sitemap-column h5 {
    font-size: 0.9rem;
  }

  .sitemap-column ul li a {
    font-size: 0.8rem;
  }

  .footer-sitemap-content,

}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent-blue);
}

.business-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.business-details-section {
  background: rgba(52,152,219,0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(52,152,219,0.1);
  transition: all 0.3s ease;
}

.business-details-section:hover {
  background: rgba(52,152,219,0.08);
  border-color: rgba(52,152,219,0.2);
  transform: translateY(-2px);
}

.business-details-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.business-details-content {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.business-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.business-link:hover {
  color: var(--accent-blue);
}

.business-identifier {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 4px 8px;
  background: rgba(52,152,219,0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-weight: 500;
  border: 1px solid rgba(52,152,219,0.2);
}

.developer-credit {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.developer-credit p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.developer-credit a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: var(--accent-red);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .business-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-details-section {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .auto-service-footer {
    padding: 32px 0 16px 0;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .footer-bottom-links {
    gap: 16px;
  }

  .business-details {
    margin-top: 24px;
    padding-top: 24px;
  }

  .business-details-section {
    padding: 16px;
  }

  .business-details-title {
    font-size: 1rem;
  }

  .business-details-content {
    font-size: 0.85rem;
  }

  .business-identifier {
    font-size: 0.75rem;
    padding: 3px 6px;
  }








}

/* WCAG AA contrast fixes (added 2026-05-07) */
.footer-sitemap-content h4 { color: #5dade2 !important; }
.business-details-title { color: #5dade2 !important; }
.business-identifier { color: #d6dee5 !important; }
.btn-header span { color: #ffffff !important; }

/* includes/cta/cta.css */
/* ===========================================
   GLOBAL CTA SECTION STYLES
   =========================================== */

.global-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1c23 0%, #0d0e12 100%);
    position: relative;
    overflow: hidden;
}

.global-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(193, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cta-grid.cta-single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(145deg, rgba(42, 45, 58, 0.8), rgba(30, 32, 41, 0.9));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    transition: width 0.3s ease;
}

.cta-quote::before {
    background: linear-gradient(180deg, #c10000, #8a0000);
}

.cta-contact::before {
    background: linear-gradient(180deg, #3498db, #2980b9);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-card:hover::before {
    width: 6px;
}

/* Card Icon */
.cta-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.cta-quote .cta-card-icon {
    background: linear-gradient(135deg, rgba(193, 0, 0, 0.2), rgba(193, 0, 0, 0.1));
    border: 1px solid rgba(193, 0, 0, 0.3);
}

.cta-contact .cta-card-icon {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.1));
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.cta-card-icon i {
    font-size: 28px;
}

.cta-quote .cta-card-icon i {
    color: #c10000;
}

.cta-contact .cta-card-icon i {
    color: #3498db;
}

/* Card Content */
.cta-card-content {
    flex: 1;
    margin-bottom: 25px;
}

.cta-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-card-content p {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features List */
.cta-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ffffff;
}

.cta-features-list li i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* Contact Methods */
.cta-contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1rem;
}

.contact-method.viber:hover {
    background: rgba(123, 104, 238, 0.2);
    border-color: rgba(123, 104, 238, 0.4);
}

.contact-method.viber i {
    color: #7b68ee;
}

.contact-method.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-method.whatsapp i {
    color: #25d366;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.cta-btn-primary {
    background: linear-gradient(135deg, #c10000, #8a0000);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(193, 0, 0, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(193, 0, 0, 0.4);
}

.cta-btn-secondary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
}

.cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

/* Emergency Bar */
.cta-emergency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(193, 0, 0, 0.15), rgba(193, 0, 0, 0.05));
    border: 1px solid rgba(193, 0, 0, 0.3);
    border-radius: 16px;
    flex-wrap: wrap;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c10000, #8a0000);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(193, 0, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(193, 0, 0, 0);
    }
}

.emergency-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.emergency-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.emergency-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.emergency-text {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #c10000, #8a0000);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(193, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(193, 0, 0, 0);
    }
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(193, 0, 0, 0.4);
}

.emergency-btn i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-card {
        padding: 30px;
    }

    .cta-emergency-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .emergency-content {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .global-cta {
        padding: 60px 0;
    }

    .cta-card {
        padding: 25px;
    }

    .cta-card-icon {
        width: 60px;
        height: 60px;
    }

    .cta-card-icon i {
        font-size: 24px;
    }

    .cta-card-content h3 {
        font-size: 1.3rem;
    }

    .cta-contact-methods {
        flex-direction: column;
    }

    .contact-method {
        justify-content: center;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .emergency-btn {
        width: 100%;
        justify-content: center;
    }
}
