/* =======================================================
   CSS RESET & BASELINE NORMALIZATION (Mobile-first)
   ======================================================= */
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, 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, 
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 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F2F5FB;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F2F5FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #185EA6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F9B02E;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border-radius: 0;
  background: none;
  border: none;
  color: inherit;
}

/* =======================================================
   BRAND FONTS (Montserrat for titles, Roboto for body)
   ======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, .logo, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #185EA6;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #185EA6;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #185EA6;
}
h3 {
  font-size: 1.25rem;
  color: #185EA6;
  margin-bottom: 10px;
}
.subtitle {
  font-size: 1.125rem;
  color: #4F6478;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.confirmation-message {
  font-size: 1.1rem;
  color: #1A1A1A;
  margin-bottom: 16px;
}

/* =======================================================
   LAYOUT & SPACING
   ======================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24, 94, 166, 0.05);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24, 94, 166, 0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(24,94,166,0.13);
  transform: translateY(-2px);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F5FB;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(24, 94, 166, 0.06);
  margin-bottom: 20px;
  flex-direction: column;
  position: relative;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.1rem;
  color: #1A1A1A;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-author {
  color: #185EA6;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
  align-self: flex-end;
}
.feature-item, .feature-list > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1px 6px rgba(24,94,166,0.03);
  transition: box-shadow 0.18s;
}
.feature-item:hover, .feature-list > li:hover {
  box-shadow: 0 2px 12px rgba(24,94,166,0.10);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-list img {
  width: 38px;
  height: 38px;
}
.feature-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cards for team, guides, services, workshops, tools... */
.team-list, .guide-list, .service-list, .workshop-list, .tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.team-member, .guide-item, .service-item, .workshop-item, .tool-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24, 94, 166, 0.05);
  padding: 24px 18px;
  flex: 1 1 270px;
  min-width: 250px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.team-member:hover, .guide-item:hover, .service-item:hover, .workshop-item:hover, .tool-item:hover {
  box-shadow: 0 4px 18px rgba(24, 94, 166, 0.11);
  transform: translateY(-2px);
}
.service-price {
  color: #F9B02E;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 6px;
}

.faq-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list li {
  background: #fff;
  border-radius: 9px;
  padding: 18px 14px;
  box-shadow: 0 1px 4px rgba(24,94,166,0.05);
}
.faq-list strong {
  color: #185EA6;
  display: block;
  margin-bottom: 6px;
}

.text-section, .guide-section, .feature-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Service features (icons + desc in svetovanje) */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.service-feature {
  background: #F2F5FB;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  box-shadow: 0 1px 4px rgba(24,94,166,0.05);
  min-width: 250px;
  flex: 1 1 270px;
}
.service-feature img {
  width: 34px;
  height: 34px;
}

.pricing-info {
  font-size: 1.15rem;
  color: #185EA6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-top: 8px;
  font-weight: 600;
}

/* =======================================================
   BUTTONS, CTA & INTERACTIONS
   ======================================================= */
.cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  border-radius: 28px;
  border: none;
  background: #185EA6;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(24, 94, 166, 0.09);
  text-shadow: none;
  transition: background 0.18s, color 0.17s, transform 0.15s;
  cursor: pointer;
  margin-top: 10px;
  outline: none;
  border: 2px solid #185EA6;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9B02E;
  color: #185EA6;
  border-color: #F9B02E;
  transform: translateY(-2px);
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* =======================================================
   NAVIGATION (Desktop & Mobile)
   ======================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: 64px;
}
.nav-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo img {
  height: 40px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #185EA6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.14s, border 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F9B02E;
  border-bottom: 2px solid #F9B02E;
}

.mobile-menu-toggle {
  display: none;
  background: #185EA6;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 0;
  cursor: pointer;
  z-index: 1002;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #185EA6dd;
  color: #F9B02E;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 40px rgba(24, 94, 166, 0.16);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.85,.14,.44,1.01);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 34px;
}
.mobile-menu.menu-open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #185EA6;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 24px;
  border: none;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F9B02E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.mobile-nav a {
  font-size: 1.20rem;
  color: #185EA6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 6px 0;
  border-bottom: 1px solid #E2E8F0;
  transition: color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #F9B02E;
}

@media (max-width: 992px) {
  .main-nav {
    gap: 17px;
  }
  .nav-container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-container {
    gap: 8px;
    padding-right: 44px;
  }
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: #185EA6;
  color: #fff;
  padding: 36px 0 20px 0;
  box-shadow: 0 -2px 14px rgba(24, 94, 166, 0.07);
  font-size: 1rem;
  margin-top: 60px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-container > * {
  margin-right: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 0 auto;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9B02E;
}
.footer-contact {
  font-size: 0.97rem;
  color: #F2F5FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer img {
  height: 40px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-container > * {
    margin-right: 0;
  }
  footer {
    font-size: 0.95rem;
    margin-top: 32px;
  }
}

/* =======================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  padding: 30px 16px 16px 16px;
  background: #fff;
  border-top: 2px solid #185EA6;
  box-shadow: 0 -2px 18px rgba(24, 94, 166, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1200;
  animation: cookieIn 0.55s cubic-bezier(.82,.01,.44,1.03) both;
}
.cookie-banner__text {
  color: #185EA6;
  font-size: 1.07rem;
  margin-bottom: 4px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-banner__btn, .cookie-banner__btn--secondary {
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  transition: background 0.13s, color 0.12s;
  background: #185EA6;
  color: #fff;
  border: 2px solid #185EA6;
  cursor: pointer;
}

.cookie-banner__btn--secondary {
  background: #fff;
  color: #185EA6;
  border: 2px solid #185EA6;
}
.cookie-banner__btn--secondary:hover, .cookie-banner__btn--secondary:focus {
  background: #F2F5FB;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #F9B02E;
  color: #185EA6;
  border-color: #F9B02E;
}

@keyframes cookieIn {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  inset: 0;
  background: rgba(24,94,166,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.35s cubic-bezier(.82,.01,.44,1.03) both;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(24,94,166,0.19);
  max-width: 410px;
  width: 94vw;
  padding: 34px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 1400;
  transition: box-shadow 0.18s;
}
.cookie-modal h3 {
  color: #185EA6;
  margin-bottom: 7px;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.65rem;
  color: #185EA6;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #F9B02E;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-modal__category label {
  font-size: 1.02rem;
  color: #1A1A1A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal__switch {
  display: flex;
  align-items: center;
  position: relative;
}
.cookie-modal__toggle {
  width: 38px;
  height: 22px;
  background: #E2E8F0;
  border-radius: 11px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  margin-right: 7px;
}
.cookie-modal__toggle input {
  display: none;
}
.cookie-modal__toggle.checked {
  background: #185EA6;
}
.cookie-modal__toggle .circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-modal__toggle.checked .circle {
  left: 19px;
  background: #F9B02E;
}
.cookie-modal__desc {
  color: #4F6478;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
@keyframes cookieModalIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* =======================================================
   RESPONSIVE ADJUSTMENTS (Mobile first)
   ======================================================= */
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
  }
  .footer-container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 4px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
  .content-wrapper,
  .card-container,
  .content-grid,
  .feature-list,
  .team-list,
  .guide-list,
  .service-list,
  .workshop-list,
  .tool-list {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    font-size: 1rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .service-feature {
    flex-direction: row;
    gap: 12px;
    min-width: unset;
    padding: 10px 8px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 16px 0;
    border-radius: 0;
  }
  .card,
  .team-member, .guide-item, .service-item, .workshop-item, .tool-item {
    min-width: 0;
    padding: 15px 7px;
    border-radius: 10px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =======================================================
   UTILITIES & MISC
   ======================================================= */
::-webkit-scrollbar {
  width: 12px;
  background: #F2F5FB;
}
::-webkit-scrollbar-thumb {
  background: #E2E8F0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d1dbe6;
}

/* Cards and section hover effect subtle for accessibility */
.card:focus-within, .team-member:focus-within, .guide-item:focus-within, .service-item:focus-within, .workshop-item:focus-within, .tool-item:focus-within {
  outline: 2px solid #185EA6;
}

/* Ensure minimum vertical margins always present between all elements */
.team-member, .guide-item, .service-item, .workshop-item, .tool-item, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* Responsive alignment enforcement */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
  .content-grid { flex-direction: column; gap: 16px; }
}


/* =================== END OF STYLE.CSS =================== */
