/* ===================================================================
   CSS RESET & BASE NORMALIZATION
   =================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: #F8F9FB;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A3C60;
  background: #F8F9FB;
}

/* ===================================================================
   BRANDING COLORS & FONTS
   =================================================================== */
:root {
  --primary: #1A3C60;
  --secondary: #F8F9FB;
  --accent: #FEAC36;
  --electric-pink: #F73C86;
  --electric-blue: #2BDCFB;
  --electric-green: #35EE5E;
  --electric-violet: #7E4FFF;
  --gray-900: #152236;
  --gray-100: #E5EDF5;
  --shadow: 0 4px 18px rgba(26,60,96,0.10), 0 1.5px 5px rgba(47, 160, 255, 0.09);
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.13;
}
h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--electric-pink);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--electric-violet);
}
h4,h5,h6 { font-size: 1rem; color: var(--primary); }

p, ul, ol, dl, blockquote {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--gray-900);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
a {
  color: var(--electric-pink);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}
ul, ol {
  padding-left: 28px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===================================================================
   LAYOUT CONTAINERS & FLEXBOX
   =================================================================== */
.container {
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.22s;
  margin-bottom: 20px;
  border: 2px solid var(--electric-pink);
}
.feature:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px rgba(255,172,54,0.16),0 4px 14px rgba(54,64,255,0.09);
  border-color: var(--electric-blue);
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 100%;
  background: var(--gray-100);
  box-shadow: 0 2px 12px rgba(54,64,255,0.06);
}
.service-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 335px;
  align-items: flex-start;
  position: relative;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.23s, border-color 0.18s;
}
.service-item:hover {
  border-left: 6px solid var(--electric-pink);
  box-shadow: 0 10px 38px 0 rgba(47,160,255,0.08), 0 2px 8px 0 rgba(254,172,54,0.13);
}
.price {
  font-size: 1.29rem;
  font-weight: bold;
  color: var(--electric-pink);
  align-self: flex-end;
  margin-top: 10px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.progress-paths {
  margin-top: 18px;
}
.progress-paths h3 {
  color: var(--electric-green);
  margin-bottom: 10px;
  font-weight: bold;
}
.progress-paths ul li {
  color: var(--primary);
  margin-bottom: 3px;
  font-size: 1rem;
}
.map-embed {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: var(--primary);
}

/* ===================================================================
   HERO, CTA BUTTON, MICRO-INTERACTIONS
   =================================================================== */
.hero {
  background: linear-gradient(98deg, var(--accent) 0%, var(--electric-blue) 96%) no-repeat;
  padding: 64px 0 36px 0;
  margin-bottom: 50px;
  min-height: 320px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 16px rgba(254,172,54,0.14);
}
.hero p {
  color: #433B55;
  font-size: 1.18rem;
  margin-bottom: 23px;
  max-width: 420px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 100px;
  background: var(--electric-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.012em;
  box-shadow: 0 3px 18px rgba(254,172,54,0.14);
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.17s, transform 0.18s, box-shadow 0.19s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.055) translateY(-2px);
  box-shadow: 0 10px 22px rgba(247,60,134,0.13),0 4px 14px rgba(47,160,255,0.06);
  text-decoration: none;
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
header {
  background: #fff;
  box-shadow: 0 1px 20px rgba(43,220,251,0.05);
  z-index: 25;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 22px;
}

nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  padding: 8px 10px;
  transition: color 0.2s;
}
nav a:hover, nav a:focus {
  color: var(--electric-pink);
}
nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  display: none;
  cursor: pointer;
  margin-left: 12px;
  padding: 8px;
  z-index: 61;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--electric-blue);
}

/* ===================================================================
   MOBILE MENU OVERLAY
   =================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,38,78,0.98);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1.2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  align-self: flex-end;
  margin: 20px 18px 6px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
  padding: 6px 32px 8px 32px;
  margin-top: 0;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.23rem;
  padding: 13px 0;
  width: 100%;
  transition: color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.037);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-blue);
  outline: none;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 992px){
  header nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 992px){
  .mobile-menu { display: flex; }
}
@media (min-width: 993px){
  .mobile-menu,
  .mobile-menu.open { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  .cta-btn { display: inline-block; }
  header nav { display: flex; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: #fff;
  border-top: 2px solid var(--electric-blue);
  margin-top: 60px;
  padding: 38px 0 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1.5px dashed var(--electric-violet);
  padding-bottom: 8px;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  padding: 2px 2px;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-info {
  font-size: 0.98rem;
  color: #423D6A;
  margin-top: 6px;
  margin-bottom: 6px;
}
.footer-info a {
  color: var(--electric-blue);
  text-decoration: underline;
  font-weight: 500;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonial-slider, .testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-slider {
  margin-top: 10px;
  margin-bottom: 22px;
}
.testimonial-card {
  background: #fff;
  color: #0D213A;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(26,60,96,0.09);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 240px;
  max-width: 370px;
  font-size: 1.08rem;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid var(--electric-purple, var(--electric-violet));
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  color: #0D213A;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.43;
  quotes: "\201C" "\201D" "\2018" "\2019";
  position: relative;
}
.testimonial-card p {
  margin: 0;
  color: var(--primary);
}
.testimonial-card strong {
  color: var(--electric-pink);
}

/* ===================================================================
   FAQ LIST (Pogosta Vprasanja)
   =================================================================== */
.faq-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--electric-green);
  font-size: 1.15rem;
  margin-bottom: 4px;
  margin-top: 4px;
}
.faq-list dd {
  color: var(--gray-900);
  margin-bottom: 8px;
  margin-left: 0;
  font-size: 0.99rem;
  padding-left: 10px;
}

/* ===================================================================
   COOKIE CONSENT BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  left: 15px;
  right: 15px;
  bottom: 20px;
  z-index: 120;
  background: #fff;
  border: 2px solid var(--electric-blue);
  box-shadow: 0 3px 18px 0 rgba(47,160,255,0.12);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.35s cubic-bezier(.4,.13,.1,1.1);
  font-size: 1.04rem;
  max-width: 380px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
}
.cookie-banner-title {
  font-weight: bold;
  color: var(--electric-pink);
  font-size: 1.15rem;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  width: 100%;
}
.cookie-banner-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  background: var(--electric-pink);
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
  font-size: 0.99rem;
  outline: none;
}
.cookie-banner-btn.settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner-btn.reject {
  background: var(--electric-blue);
  color: var(--primary);
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: var(--electric-green);
  color: var(--gray-900);
}
.cookie-banner-btn.settings:hover {
  background: var(--electric-violet);
  color: #fff;
}

/* Cookie consent modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,40,76,0.73);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.35s both;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(26,60,96,0.14);
  padding: 32px 26px 26px 26px;
  max-width: 410px;
  width: 95%;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--electric-pink);
  font-size: 1.18rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 100px;
  border: none;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle.enabled {
  background: var(--electric-blue);
}
.cookie-toggle-thumb {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(47,160,255,0.07);
  transition: left 0.19s;
}
.cookie-toggle.enabled .cookie-toggle-thumb {
  left: 20px;
  background: var(--accent);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-close {
  position: absolute;
  top: 12px; right: 12px;
  background: none;
  border: none;
  font-size: 1.53rem;
  color: var(--electric-violet);
  cursor: pointer;
}
.cookie-close:hover {
  color: var(--electric-pink);
}

/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 1190px) {
  .container { max-width: 92vw; }
}
@media (max-width: 992px) {
  .footer-nav, .feature-grid, .service-list, .content-wrapper {
    gap: 16px;
  }
  .feature, .service-item {
    min-width: 95vw;
    max-width: 99vw;
    padding: 22px 10px;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.47rem;
  }
  h2 {
    font-size: 1.19rem;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 8px;
  }
  .feature-grid, .service-list, .testimonial-slider, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .service-item, .testimonial-card {
    min-width: 0;
    max-width: 100vw;
    padding: 16px 11px;
    font-size: 0.99rem;
  }
  .hero {
    padding: 34px 0 18px 0;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.61rem;
  }
  .hero p {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
  .cta-btn {
    padding: 11px 24px;
    font-size: 1rem;
  }
  .footer-nav {
    font-size: 0.97rem;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    max-width: 99vw;
    left: 2vw;
    right: 2vw;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal-content {
    padding: 22px 8px 14px 8px;
  }
}

/* =============
   FLEXBOX UTILITIES
   ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px){
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
}

/* =============
   UTILITY & HELPER CLASSES
   ============= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center !important; }

/* =============
   ANIMATIONS
   ============= */
@keyframes slideInLeft {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutLeft {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(254,172,54,.18); }
  50% { box-shadow: 0 0 16px 8px rgba(254,172,54,.27); }
  100% { box-shadow: 0 0 0 0 rgba(254,172,54,0); }
}
.cta-btn:active {
  animation: btnPulse 0.24s linear;
}

/* Focus ring for accessibility */
:focus {
  outline: 2px solid var(--electric-blue);
  outline-offset: 2px;
}

/* =============
   CUSTOM SCROLLBAR (Webkit only)
   ============= */
::-webkit-scrollbar {
  width: 10px;
  background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 12px;
}

/* ===================================================================
   END CSS
   =================================================================== */
