/*========================================
  Luminex Rhetorik – Geometric Structured UI
  Comprehensive CSS for All Pages
  STYLE: Geometric / Structured / Flexbox-Only
============================================*/

/* === 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,
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;
}
body {
  line-height: 1.6;
  color: #213C5C;
  background-color: #F6F4EF;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img, picture {
  max-width: 100%;
  display: block;
}

a {
  color: #213C5C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E2B038;
}

/* === TYPOGRAPHY (Geometric, Structured Scale) === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;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.2;
  color: #213C5C;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
  border-left: 6px solid #E2B038;
  padding-left: 16px;
  background: none;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  color: #435B74;
  margin-bottom: 28px;
  font-weight: 600;
  max-width: 36em;
}
p {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* === GEOMETRIC STRUCTURED SHAPES === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 22px rgba(33, 60, 92, 0.09), 0 1.5px 5px rgba(226, 176, 56,0.10);
  position: relative;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 14px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* === FEATURE/CARD/GRID CONTAINERS === */
.card-container, .feature-grid, .course-list, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.card-container {
  justify-content: space-between;
}
.feature-grid {
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(33,60,92,0.05);
  padding: 28px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 325px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(33,60,92,0.11);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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 (as in features) */
.feature-item, .feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F4EF;
  padding: 22px 20px 18px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(33,60,92,.06);
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.13s, background 0.13s;
}
.feature-item img, .feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-item:hover, .feature:hover {
  background: #fff;
  box-shadow: 0 5px 16px rgba(33,60,92,.11);
}

/* Blog post list */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-list article {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(33,60,92,0.045);
  padding: 22px 22px 18px 22px;
  min-width: 235px;
  flex: 1 1 235px;
  transition: box-shadow 0.13s, transform 0.13s;
}
.blog-post-list article:hover {
  box-shadow: 0 5px 16px rgba(33,60,92,0.15);
  transform: translateY(-2px) scale(1.01);
}

/* === TESTIMONIALS (Readability & Card) === */
.testimonial-carousel,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #f6f4ef;
  box-shadow: 0 2.5px 10px rgba(33,60,92,0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 420px;
  position: relative;
  color: #2C344B;
  font-size: 1.1em;
  transition: box-shadow 0.12s, background 0.14s;
}
.testimonial-card h3 {
  margin-top: 0;
  font-size: 1.11rem;
  letter-spacing: 0.02em;
}
.testimonial-card p {
  color: #263045;
  margin-bottom: 0;
}
.testimonial-meta {
  align-self: flex-end;
  color: #213C5C;
  font-size: 0.93em;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.testimonial-card:hover {
  box-shadow: 0 7px 22px rgba(33,60,92,.12);
  background: #fff;
}

/* === BUTTONS & INTERACTIVE ELEMENTS === */
.cta, .btn, button, .cookie-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #213C5C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  margin-top: 12px;
  box-shadow: 0 2px 10px rgba(226,176,56, 0.03), 0 1px 3px rgba(33,60,92,0.07);
  cursor: pointer;
  gap: 10px;
  text-transform: uppercase;
  transition: background 0.17s, color 0.17s, transform 0.12s, box-shadow 0.13s;
}
.cta:hover, .btn:hover, button:hover, .cookie-banner button:hover {
  background: #E2B038;
  color: #213C5C;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 5px 15px rgba(226,176,56,0.06), 0 3px 11px rgba(33,60,92,0.13);
}
button:focus, .cta:focus {
  outline: 3px solid #E2B038;
  outline-offset: 2px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #f6f4ef;
  box-shadow: 0 2.5px 9px rgba(33,60,92,.08);
  padding-top: 8px;
  padding-bottom: 8px;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01em;
  color: #213C5C;
  letter-spacing: 0.035em;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.14s;
  position: relative;
  text-transform: uppercase;
}
.main-nav .cta {
  background: #E2B038;
  color: #213C5C;
  font-size: 1.04em;
  padding: 10px 23px;
  border-radius: 30px;
  margin-left: 16px;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(226,176,56,0.07);
}
.main-nav .cta:hover {
  background: #213C5C;
  color: #fff;
}
.main-nav a:hover, .main-nav a:active {
  background: #E2B038;
  color: #213C5C;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: #213C5C;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
  z-index: 140;
}
.mobile-menu-toggle:focus {
  background: #E2B038;
  color: #213C5C;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #213C5C;
  color: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.61,0.01,0.62,1), box-shadow 0.19s;
  box-shadow: -4px 0 26px rgba(33,60,92,0.16);
  padding: 36px 24px 18px 24px;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #E2B038;
  border: none;
  align-self: flex-end;
  margin-bottom: 22px;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.15s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #213C5C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 0 0 0 0;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: #F6F4EF;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
  transition: background 0.13s, color 0.13s;
  text-transform: uppercase;
  border-left: 5px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2B038;
  color: #213C5C;
  border-left-color: #E2B038;
}
.mobile-nav a.cta {
  background: #E2B038;
  color: #213C5C;
  margin-top: 10px;
  border-left: 5px solid #213C5C;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #213C5C;
  color: #FFF;
  padding: 18px 36px;
  box-shadow: 0 -2.5px 16px rgba(33,60,92,.16);
  font-size: 1.01em;
  flex-wrap: wrap;
  gap: 18px;
  transition: transform 0.37s cubic-bezier(.45,0.03,.99,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner span {
  flex: 1 1 260px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  min-width: 100px;
  font-size: 0.98em;
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 0;
}
.cookie-banner .accept {
  background: #E2B038;
  color: #213C5C;
}
.cookie-banner .accept:hover {
  background: #F6F4EF;
  color: #213C5C;
}
.cookie-banner .reject {
  background: #263045;
  color: #E2B038;
}
.cookie-banner .reject:hover {
  background: #E2B038;
  color: #213C5C;
}
.cookie-banner .settings {
  background: #fff;
  color: #213C5C;
  border: 1.5px solid #E2B038;
}
.cookie-banner .settings:hover {
  background: #E2B038;
  color: #213C5C;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 200;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,60,92,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #213C5C;
  padding: 34px 32px 26px 32px;
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(33,60,92,.22);
  width: 94vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  margin-bottom: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  color: #213C5C;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-switch {
  width: 44px; height: 22px; border-radius: 12px;
  background: #e4e4e4;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.17s;
}
.cookie-switch input {
  appearance: none;
  width: 0; height: 0;
  position: absolute;
  opacity: 0;
}
.cookie-switch .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #213C5C;
  border-radius: 50%;
  transition: left 0.18s, background 0.17s;
}
.cookie-switch input:checked + .slider {
  left: 24px;
  background: #E2B038;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-end;
}
/* Essential cookies always enabled and grayed out */
.cookie-category.essential .cookie-switch {
  background: #ccc;
}
.cookie-category.essential label {
  color: #737373;
}


/* === SECTION & LAYOUTS === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 22px rgba(33,60,92, 0.09), 0 1.5px 5px rgba(226,176,56,0.10);
  position: relative;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}
ul.brand-values li, ul.service-list li, ul.course-list li, .contact-details {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  position: relative;
  font-size: 1.01em;
}
ul.brand-values li::before, ul.service-list li::before, ul.course-list li::before {
  content: '';
  display: inline-flex;
  height: 12px; width: 12px;
  border-radius: 30%;
  background: #E2B038;
  margin-right: 10px;
  margin-top: 7px;
}

/* === CLIENT LOGOS === */
.client-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 0;
}
.client-logos img {
  height: 45px;
  width: auto;
  filter: grayscale(0.45);
  opacity: 0.82;
}

/* === CONTACT DETAILS === */
.contact-details {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}
.contact-details img {
  width: 19px;
  height: 19px;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(2px);
}

/* MAP & PARKING */
.map, .parking-information, .directions {
  background: #f6f4ef;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px rgba(33,60,92,0.07);
}
.map h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

/* === FOOTER === */
footer {
  padding: 40px 0 18px 0;
  background: #213C5C;
  color: #fff;
  margin-top: 60px;
}
footer .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
footer nav a {
  color: #E2B038;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1em;
  transition: color 0.13s, background 0.13s;
  border-radius: 7px;
  padding: 6px 10px;
}
footer nav a:hover {
  background: #E2B038;
  color: #213C5C;
}
footer .footer-contact {
  color: #F6F4EF;
  font-size: 0.98em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0.84;
}
footer img {
  max-height: 45px;
  filter: grayscale(.13) brightness(1.06);
}

/* === CONFIRMATION MESSAGES, CONTACT CTAS === */
.confirmation-message, .contact-banner {
  background: #F6F4EF;
  border-radius: 18px;
  padding: 22px 24px 14px 24px;
  box-shadow: 0 2px 7px rgba(226,176,56,0.09);
  margin-bottom: 20px;
}
.next-steps, .method-highlight {
  background: #fff;
  border-radius: 13px;
  padding: 19px 18px 12px 18px;
  box-shadow: 0 2px 8px rgba(33,60,92,0.04);
  margin-bottom: 22px;
}
.next-steps h2, .method-highlight h3 {
  margin-bottom: 8px;
  color: #E2B038;
  font-size: 1.18rem;
  border-left: 4px solid #213C5C;
  padding-left: 10px;
}

/* === SUCCESS METRICS on success story page === */
.success-metrics {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 1.5px 8px rgba(33,60,92,0.089);
}
.success-metrics h3 {
  margin-bottom: 12px;
  font-size: 1.09rem;
}
.success-metrics ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 10px;
}
.success-metrics img {
  max-height: 40px;
  opacity: 0.93;
  margin-top: 14px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1150px) {
  .container {
    max-width: 90vw;
  }
}
@media (max-width: 900px) {
  .footer-contact {
    flex-direction: column;
    gap: 3px;
  }
  .client-logos {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
    max-width: 97vw;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 37px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .card-container, .feature-grid, .content-grid, .blog-post-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature,
  .card,
  .blog-post-list article {
    min-width: 0;
    max-width: 100%;
    padding: 17px 12px;
    border-radius: 13px;
  }
  .testimonial-carousel, .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px 10px;
    border-radius: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  header .container {
    height: 68px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 15px 15px 15px;
    gap: 14px;
    font-size: .97em;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  .cookie-modal-content {
    padding: 15px 9px 12px 9px;
    max-width: 95vw;
  }
}

/* === UTILITY & MICRO-ANIMATIONS === */
button, .cta, .btn {
  transition: background 0.15s, color 0.15s, box-shadow 0.11s, transform 0.12s;
}
.card, .feature, .testimonial-card, .blog-post-list article {
  transition: box-shadow 0.17s, transform 0.14s;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
}

/* === HIDE CLASSES / STATE CLASSES === */
.hide { display: none !important; pointer-events: none !important; }

/* === MISC GEOMETRIC VISUALS === */
.brand-values li::before {
  content: '\25B2'; /* Triangle */
  font-size: 0.82em;
  color: #E2B038;
  background: none;
  display: inline-block;
  margin-right: 10px;
  margin-top: 5px;
}

/* === SCROLLBAR THEME === */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F4EF;
}
::-webkit-scrollbar-thumb {
  background: #E2B038;
  border-radius: 5px;
}

/* === FORM ELEMENTS, MESSAGES (if present) === */
input, textarea {
  border: 1.4px solid #213C5C;
  border-radius: 11px;
  padding: 10px 13px;
  margin-bottom: 18px;
  background: #fff;
  font-size: 1em;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 1px 3px rgba(33,60,92,0.06);
  transition: border-color 0.13s;
}
input:focus, textarea:focus {
  border-color: #E2B038;
  outline: none;
}
label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
  display: block;
}

/* === ANIMATIONS KEYFRAMES FOR MOBILE MENU/COOKIE === */
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity:0.5;
  }
  100% {
    transform: translateX(0);
    opacity:1;
  }
}
@keyframes slideOutRight {
  0% {transform: translateX(0); opacity:1;}
  100% {transform: translateX(100%); opacity: .2;}
}
@keyframes slideInUp {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/* End of style.css */
