/*
 * Šola vožnje Kovač - Premium Styling System
 * Elegant dark-automotive dashboard design with neon orange glowing accents.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #08090b;
  --bg-secondary: #0f1115;
  --bg-card: rgba(18, 20, 26, 0.7);
  --bg-card-hover: rgba(26, 29, 38, 0.85);
  
  --accent: #ff6b00;
  --accent-rgb: 255, 107, 0;
  --accent-secondary: #ff3c00;
  
  --text-primary: #f5f6f8;
  --text-secondary: #9aa0b0;
  --text-muted: #646a78;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 107, 0, 0.15);
  --border-glow-active: rgba(255, 107, 0, 0.4);
  
  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Effects */
  --shadow-neon: 0 0 20px rgba(255, 107, 0, 0.25);
  --shadow-neon-intense: 0 0 35px rgba(255, 107, 0, 0.45);
  --glass-blur: blur(12px);
  --transition-speed: 0.35s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

ul {
  list-style: none;
}

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

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1f2229;
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, rgba(255, 107, 0, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-padding {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.btn-primary::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: all 0.6s ease;
}

.btn-primary:hover {
  background: var(--accent-secondary);
  box-shadow: var(--shadow-neon-intense);
  transform: translateY(-2px);
}

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

.btn-secondary {
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: var(--text-primary);
  background: rgba(255, 107, 0, 0.03);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 9, 11, 0.75);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
}

.header.scrolled {
  background: rgba(8, 9, 11, 0.95);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: all var(--transition-speed) ease;
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--accent); /* Elegant glowing orange accent color */
  transition: all var(--transition-speed) ease;
}

.logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.35));
  transition: all var(--transition-speed) ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(15deg);
  color: #ffffff; /* Transitions to clean white on brand hover */
}

.logo:hover .logo-svg {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.logo-text span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-neon);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(8, 9, 11, 0.6) 0%, #08090b 95%), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  transition: transform 12s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
  filter: blur(50px);
}

.hero .container {
  position: relative;
  z-index: 3;
}

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

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.08);
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-phone-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.hero-phone-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-phone-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-phone-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-speed) ease;
}

.hero-phone-item:hover .hero-phone-number {
  color: var(--accent);
}

/* Statistika (Counters) */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), var(--shadow-neon);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* "O nas" (About Us) Section */
.about {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.8rem;
}

.about-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.instructor-sig {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sig-title {
  display: flex;
  flex-direction: column;
}

.sig-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.sig-role {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: all var(--transition-speed) ease;
}

.about-image-container:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.15);
}

.about-image {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.02);
}

.about-decor-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  z-index: 10;
  pointer-events: none;
  opacity: 0.5;
}

.about-decor-2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 10;
  pointer-events: none;
  opacity: 0.5;
}

/* "Kako do izpita" Section (Interactive Timeline) */
.timeline-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}

.timeline-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-step-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.timeline-step-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition-speed) ease;
  box-shadow: var(--shadow-neon);
}

.timeline-step-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateX(5px);
}

.timeline-step-btn.active {
  background: var(--bg-card-hover);
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 15px rgba(255,107,0,0.05);
}

.timeline-step-btn.active::before {
  transform: scaleY(1);
}

.timeline-step-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.timeline-step-btn.active .timeline-step-num {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.timeline-step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--transition-speed) ease;
}

.timeline-step-btn.active .timeline-step-title {
  color: var(--text-primary);
}

/* Timeline Content Viewer */
.timeline-viewer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-card.active {
  display: block;
  animation: slideInUp 0.5s forwards cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.timeline-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-card-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 107, 0, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.timeline-card-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.timeline-card-tips {
  background: rgba(255, 107, 0, 0.02);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 6px;
  padding: 1.5rem;
  position: relative;
}

.timeline-card-tips::before {
  content: 'NAMIG / PRIPOROČILO:';
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-card-tips ul {
  list-style: none;
}

.timeline-card-tips li {
  margin-bottom: 0.6rem;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-card-tips li:last-child {
  margin-bottom: 0;
}

.timeline-card-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.timeline-card-tips a {
  color: var(--text-primary);
  text-decoration: underline;
  font-weight: 500;
}

.timeline-card-tips a:hover {
  color: var(--accent);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pricing Section (Cenik) */
.pricing {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), 0 0 30px rgba(255, 107, 0, 0.1);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-header {
  margin-bottom: 2.5rem;
}

.pricing-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pricing-unit {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
}

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

.pricing-card .btn {
  width: 100%;
}

/* Info Grid (Delovni čas & Koristne info) */
.info-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.info-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.info-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-card-title i {
  color: var(--accent);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1rem;
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
}

.hours-time {
  color: var(--text-secondary);
}

.hours-item.closed .hours-time {
  color: var(--accent);
  font-weight: 600;
}

.useful-links-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.useful-link-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.2rem;
  border-radius: 6px;
  transition: all var(--transition-speed) ease;
}

.useful-link-item:hover {
  background: rgba(255, 107, 0, 0.03);
  border-color: rgba(255, 107, 0, 0.2);
}

.useful-link-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.useful-link-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.useful-link-action {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.useful-link-item:hover .useful-link-action {
  color: var(--text-primary);
}

/* Testimonials Section (Mnenja) */
.testimonials {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.stars-rating {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.testimonial-candidate {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.candidate-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

.candidate-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.candidate-meta {
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.slider-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.slider-dot.active {
  width: 24px;
  border-radius: 50px;
  background: var(--accent);
  box-shadow: var(--shadow-neon);
}

/* FAQ Section (Pogosta vprašanja) */
.faq {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.faq-item.active {
  border-color: rgba(255, 107, 0, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.2rem;
  cursor: pointer;
  user-select: none;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-speed) ease;
}

.faq-item.active .faq-title {
  color: var(--accent);
}

.faq-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.faq-item.active .faq-icon-box {
  background: rgba(255, 107, 0, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
  box-shadow: var(--shadow-neon);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.005);
}

.faq-answer-inner {
  padding: 0 2.2rem 1.8rem 2.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Contact & Location Section */
.contact {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.03) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-form-desc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-speed) ease;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.15);
}

select.form-input option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

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

.contact-form-container .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Map Card */
.map-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
  transition: border-color var(--transition-speed) ease;
}

.map-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
}

.map-iframe-container {
  width: 100%;
  flex-grow: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.map-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(120%); /* Sleek premium dark map styled automatically */
}

/* Footer Section */
.footer {
  background: #040507;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
  font-size: 0.95rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link-item a {
  color: var(--text-secondary);
}

.footer-link-item a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

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

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 6px;
  padding: 1.2rem 2rem;
  color: var(--text-primary);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5), var(--shadow-neon);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-family: var(--font-heading);
  font-weight: 600;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* Mobile Nav Styles & Responsiveness */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .about-grid,
  .timeline-layout,
  .info-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
  
  .header {
    padding: 0.5rem 0;
  }
  
  .nav-container {
    height: 60px;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 12, 15, 0.96);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 6rem 2rem 2rem 2.5rem;
  }
  
  .nav-menu .nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.8rem;
    text-align: left;
  }
  
  .nav-menu.open {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
  }
  
  .nav-cta {
    width: 100%;
    margin-top: 1rem;
  }
  
  .nav-cta .btn {
    width: 100%;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 60px 0;
  }
  
  body {
    font-size: 0.92rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-phone-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .pricing-price {
    font-size: 2.8rem;
  }
  
  .pricing-card {
    padding: 2.5rem 2rem;
  }
  
  .testimonial-slide {
    padding: 2.5rem 1.5rem;
  }
  
  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .contact-form-container {
    padding: 2.2rem 1.8rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-brand-col {
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  .footer-brand-desc {
    max-width: 100% !important;
    text-align: left !important;
  }
  
  .footer-socials {
    justify-content: flex-start !important;
  }
  
  .footer-title::after {
    left: 0 !important;
    transform: none !important;
  }
  
  .footer-links, .footer-contact-list {
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  .footer-contact-item {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 1.95rem;
  }
  
  .section-title {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   Mobile Accordion Timeline Styles
   ========================================================================== */
.timeline-mobile {
  display: none;
}

@media (max-width: 992px) {
  .timeline-layout {
    display: none !important;
  }
  
  .timeline-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }
  
  .mobile-step-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
  }
  
  .mobile-step-item.active {
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: var(--shadow-neon);
  }
  
  .mobile-step-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    user-select: none;
    transition: background var(--transition-speed) ease;
  }
  
  .mobile-step-item:hover .mobile-step-header {
    background: var(--bg-card-hover);
  }
  
  .mobile-step-badge {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
  }
  
  .mobile-step-item.active .mobile-step-badge {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-neon);
  }
  
  .mobile-step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-secondary);
    flex-grow: 1;
    transition: color var(--transition-speed) ease;
  }
  
  .mobile-step-item.active .mobile-step-title {
    color: var(--text-primary);
  }
  
  .mobile-step-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform var(--transition-speed) ease, color var(--transition-speed) ease;
  }
  
  .mobile-step-item.active .mobile-step-icon {
    transform: rotate(45deg);
    color: var(--accent);
  }
  
  .mobile-step-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .mobile-step-body-inner {
    padding: 0 1.4rem 1.6rem 1.4rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.2rem;
  }
  
  .mobile-step-body-inner p {
    margin-bottom: 0.8rem;
  }
  
  .mobile-step-body-inner p:last-of-type {
    margin-bottom: 0;
  }
  
  .mobile-step-tips {
    margin-top: 1.2rem;
    background: rgba(255, 107, 0, 0.02);
    border: 1px dashed rgba(255, 107, 0, 0.15);
    border-radius: 6px;
    padding: 1rem;
  }
  
  .mobile-step-tips strong {
    display: block;
    color: var(--accent);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .mobile-step-tips p {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
  }
  
  .mobile-step-tips p:last-child {
    margin-bottom: 0;
  }
  
  .mobile-step-tips a {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
  }
  
  .mobile-step-tips a:hover {
    color: var(--accent);
  }
}

/* Footer Credit Styles */
.footer-copyright-credit {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

.footer-credit a:hover {
  color: var(--text-primary);
}
