/* ========================================================== */
/*      Globetrotter Biznes - GEOMETRIC STRUCTURED CSS        */
/*      Style for all pages | Only Flexbox!                   */
/* ========================================================== */

/********************** CSS RESET & NORMALIZE ********************/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F8FA;
  color: #212A3E;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

/*********************** FONT & BRAND VARIABLES *******************/
:root {
  --primary: #1C315E;
  --secondary: #6EC1E4;
  --accent: #F7B32B;
  --neutral-bg: #F6F8FA;
  --card-bg: #fff;
  --text-dark: #112144;
  --text-light: #fff;
  --border-radius-sm: 12px;
  --border-radius-md: 18px;
  --shadow-lg: 0 8px 24px 0 rgba(28,49,94,0.08), 0 2px 6px 0 rgba(28,49,94,0.11);
  --shadow-md: 0 2px 8px 0 rgba(28,49,94,0.13);
  --shadow-card: 0 3px 16px 0 rgba(28,49,94,0.08);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--neutral-bg);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary);
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.22; }
h3 { font-size: 1.25rem; margin-bottom: 16px; line-height: 1.3; }
h4 { font-size: 1.125rem; margin-bottom: 14px; }
p, ul, ol { font-size: 1rem; margin-bottom: 1em; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/********************** HEADER & NAVIGATION ********************/
header {
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
  padding: 0;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.015em;
  color: var(--primary);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
}
.cta-button {
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-card);
  margin-left: 20px;
  transition: background 0.18s, color 0.18s, transform 0.2s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: var(--card-bg);
  border-radius: 10px;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--text-light);
}

/*********************** MOBILE MENU ***************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(28,49,94,0.96);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.46,.03,.52,.96);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 26px 24px 18px 0;
  font-size: 2.2rem;
  color: var(--accent);
  background: transparent;
  padding: 3px 12px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--text-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  padding: 0 36px;
  gap: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  padding: 16px 12px 16px 0;
  border-radius: 0 22px 22px 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.09);
}

/************************** MAIN STRUCTURE ***********************/
main {
  width: 100%;
  min-height: 60vh;
  margin-bottom: 60px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}
.content-wrapper {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/****************** GEOMETRIC STRUCTURED ELEMENTS ***************/
.feature-grid, .service-cards, .service-listing, .solutions-grid, .benefit-icons, .testimonial-slider, .testimonial-list, .success-story-cards, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 14px;
  justify-content: space-between;
}
.feature, .service-card, .solution, .benefit, .testimonial-card, .success-story {
  background: var(--card-bg);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 238px;
  min-width: 238px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.feature img, .benefit img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.service-card h3, .feature h3 {
  color: var(--secondary);
}
/***** Testimonials *****/
.testimonial-slider, .testimonial-list {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f3f7fb;
  border-left: 6px solid var(--primary);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  padding: 28px 28px 22px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 400px;
  color: var(--text-dark);
  gap: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 36px 0 rgba(28,49,94,0.13);
  border-left: 6px solid var(--accent);
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 0.07em;
}
blockquote { font-style: italic; color: #18223A; }
q {
  display: inline-block;
  border-left: 3px solid var(--secondary);
  padding-left: 13px;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #27304d;
}

/************************ SECTIONS & CARDS ************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/******************** AUDIENCE BENEFITS & VALUE PROPS ***********/
.audience-benefits, .value-props, .outcomes-list {
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc inside;
  padding-left: 16px;
  color: var(--primary);
  font-weight: 500;
}

/******************** CTA SECTIONS ******************************/
.cta {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 48px 20px;
  margin: 42px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-button {
  background: var(--accent);
  color: var(--text-dark);
  margin-top: 20px;
}
.cta .cta-button:hover {
  background: #fff;
  color: var(--primary);
}

/*********************** CONTACT PAGE ***************************/
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  margin-bottom: 24px;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f7fb;
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  min-width: 275px;
}
.map-location {
  margin-top: 16px;
  padding: 22px;
  border-radius: var(--border-radius-sm);
  background: #e9f1f9;
  color: var(--text-dark);
  font-size: 1.02rem;
  box-shadow: var(--shadow-md);
}

/************************ FOOTER *******************************/
footer {
  background: #18223A;
  color: #ECF0F3;
  padding: 0;
  font-size: 0.98rem;
  box-shadow: 0 -2px 19px 0 rgba(28,49,94,0.04);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 18px 18px 18px;
}
.footer-navigation, .footer-legal, .footer-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-navigation a, .footer-legal a {
  color: #fff;
  font-weight: 600;
  padding: 7px 0;
  letter-spacing: 0.015em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-navigation a:hover, .footer-legal a:hover {
  color: var(--accent);
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.footer-brand {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 34px;
  height: 34px;
}
.footer-brand span {
  font-size: 0.99rem;
  color: #b2c4e0;
  margin-left: 10px;
}

/************************ BLOG/CATEGORY NAV *******************/
.latest-posts .blog-post-list {
  width: 100%;
  flex-direction: column;
  gap: 18px;
}
.blog-post-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #edf3fa;
  border-radius: var(--border-radius-sm);
  margin-bottom: 10px;
  padding: 18px 20px 12px 18px;
  box-shadow: var(--shadow-card);
}
.blog-post-list a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.blog-post-list span {
  font-size: 0.97rem;
  color: #4269ab;
  margin-left: 2px;
}
.categories-navigation {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.categories-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--secondary);
  font-size: 1rem;
  background: #eaf1fa;
  border-radius: 18px;
  padding: 6px 20px;
  transition: background 0.16s, color 0.16s;
}
.categories-navigation a:hover {
  background: var(--secondary);
  color: #fff;
}

/*********************** COOKIES CONSENT BANNER ********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 4px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  z-index: 500;
  box-shadow: 0 -4px 32px 0 rgba(28,49,94,0.07);
  transition: transform 0.33s cubic-bezier(.46,.03,.52,.96), opacity 0.33s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1rem;
  flex: 1 1 50%;
  margin-right: 21px;
}
.cookie-actions {
  display: flex;
  gap: 20px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 23px;
  border-radius: 25px;
  border: none;
  box-shadow: var(--shadow-card);
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept { background: var(--accent); color: var(--text-dark); }
.cookie-btn.reject { background: #e6edf7; color: var(--primary); }
.cookie-btn.settings { background: var(--primary); color: #fff; }
.cookie-btn.accept:hover { background: var(--primary); color: var(--accent); }
.cookie-btn.reject:hover { background: #f3b8b8; color: var(--primary); }
.cookie-btn.settings:hover { background: var(--secondary); color: #fff; }

/***** Cookie Modal *****/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,49,94,0.79);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 64px 0 rgba(28,49,94,0.14);
  padding: 38px 26px 28px 36px;
  min-width: 330px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 22px;
  color: var(--primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  width: 24px;
  height: 24px;
  accent-color: var(--accent);
  border-radius: 5px;
  margin-right: 7px;
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px; right: 10px;
  background: transparent;
  font-size: 1.6rem;
  color: var(--secondary);
  border-radius: 40%;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .close-modal:hover {
  background: var(--secondary);
  color: #fff;
}

/********************** FORMATS, SOLUTIONS, STORIES *************/
.training-formats {
  margin-top: 16px;
}
.training-formats h3 {
  color: var(--secondary);
  margin-bottom: 9px;
}
.training-formats ul {
  gap: 9px;
  display: flex;
  flex-direction: column;
  list-style: disc inside;
}
.success-story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.success-story {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 350px;
}

/************************ MEDIA QUERIES *************************/
@media (max-width: 992px) {
  .container { max-width: 97vw; }
  .content-wrapper { max-width: 96vw; }
  header .container { gap: 10px; }
  .feature-grid, .service-cards, .solutions-grid, .testimonial-list, .testimonial-slider, .success-story-cards, .content-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    min-height: 64px;
  }
  header nav {
    display: none;
  }
  .footer-navigation, .footer-legal, .footer-contact {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
  }
  .cta {
    padding: 32px 12px;
  }
  .content-wrapper, .section {
    padding: 19px 7px;
  }
  .feature-grid, .service-cards, .solutions-grid, .testimonial-list, .testimonial-slider, .benefit-icons, .success-story-cards, .blog-post-list {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .card,
  .feature,
  .service-card,
  .solution,
  .testimonial-card,
  .success-story,
  .benefit {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 11px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 13px 11px;
  }
  .cookie-banner p {
    margin-right: 0;
  }
  .cookie-modal {
    padding: 24px 12px 18px 16px;
    min-width: 220px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.6rem; margin-bottom: 13px; }
  h2 { font-size: 1.22rem; }
  header .container {
    flex-direction: row;
    gap: 3px;
  }
}

/************************* ANIMATIONS ****************************/
.cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, transform 0.20s;
}
.mobile-menu, .cookie-banner, .cookie-modal-overlay {
  will-change: transform, opacity;
}

/********************** MICRO-INTERACTIONS ***********************/
.card, .feature, .service-card, .solution, .benefit, .success-story {
  transition: box-shadow 0.2s, border 0.22s, transform 0.18s;
}
.card:hover, .feature:hover, .service-card:hover, .solution:hover, .benefit:hover, .success-story:hover {
  box-shadow: 0 8px 32px 0 rgba(28,49,94,0.11);
  transform: translateY(-2px) scale(1.015);
}

/************** UTILITY / ACCESSIBILITY HELPERS **************/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/******************* END - ALL COMPONENTS *******************/
