/* ---------------------------------------------------
   RESET & NORMALIZE (lightweight modern reset)
-----------------------------------------------------*/
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F4F6F8;
  color: #183146;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
}
:focus {
  outline: 2px solid #14447B;
  outline-offset: 2px;
}

/* -------------------------------------
   BRAND & SECTION STYLES
---------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(40,60,80,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 32px;
    border-radius: 13px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* -------------------------------------
   TYPOGRAPHY
---------------------------------------*/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #14447B;
  margin-bottom: 12px;
  line-height: 1.15;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2a4261;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #183146;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2a4261;
  margin-bottom: 8px;
}
p,li,address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #324052;
  margin-bottom: 0.6em;
}
p.subheadline, .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: #4a617d;
  margin-bottom: 1em;
  letter-spacing: 0.02em;
}

b,strong {
  font-weight: 700;
}

address {
  font-style: normal;
  font-size: 1rem;
  color: #3d5675;
  line-height: 1.6;
}

/* Visual hierarchy */
.brand-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #14447B;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
}
.contact-snippet {
  font-size: 0.98rem;
  color: #678; 
  margin-bottom: 0;
}

/* -------------------------------------
   HEADER & NAVIGATION
---------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #E6EBEF;
  box-shadow: 0 2px 8px rgba(15,38,76,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 10px;
  border-radius: 6px;
  color: #183146;
  background: none;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: #F4F6F8;
  color: #14447B;
}
header nav .cta.primary {
  background: #14447B;
  color: #fff;
  border-radius: 6px;
  padding: 9px 18px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 1px 7px rgba(20,68,123,0.08);
  transition: background 0.18s, transform 0.18s;
}
header nav .cta.primary:hover, header nav .cta.primary:focus {
  background: #F9A825;
  color: #14447B;
  transform: translateY(-2px) scale(1.03);
}

header img {
  height: 37px;
  width: auto;
  margin-right: 20px;
}

/* ---------- MOBILE BURGER NAVIGATION ---------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #14447B;
  font-size: 2rem;
  border-radius: 6px;
  padding: 5px 12px;
  border: 1px solid #CBD8E6;
  transition: background 0.15s;
  z-index: 210;
}
.mobile-menu-toggle:focus {
  background: #F4F6F8;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: 0 5px 22px 0 rgba(10,34,65,0.13);
  animation: slideInMenu 0.25s ease;
  overflow-y: auto;
}
@keyframes slideInMenu {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}
.mobile-menu-close {
  align-self: flex-end;
  background: #fff;
  color: #14447B;
  font-size: 2.2rem;
  padding: 12px 16px;
  border-radius: 5px;
  margin: 18px 26px 0 0;
  border: 1px solid #E6EBEF;
  z-index: 210;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4F6F8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 32px 32px 0 38px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 8px 0;
  color: #14447B;
  width: 100%;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F9A82533;
  color: #F9A825;
}
@media(max-width: 1023px){
  header nav {
    display: none; 
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media(min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -------------------------------------
   MAIN CONTENT FLEX LAYOUTS
---------------------------------------*/
.feature-grid, .service-list, .region-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .region-grid, .testimonial-list {
    gap: 16px;
    flex-direction: column;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(40,60,80,0.07);
  padding: 26px 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 18px 0 rgba(20,68,123,0.13);
  transform: translateY(-2px) scale(1.018);
}

.service-card {
  background: #F4F6F8;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 1px 6px 0 rgba(20,68,123,0.08);
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 5px 14px 0 rgba(20,68,123,0.12);
  transform: translateY(-2px) scale(1.011);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 1px 7px 0 rgba(20,68,123,0.06);
  max-width: 320px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  box-shadow: 0 2px 7px 0 rgba(20,68,123,0.12);
}

.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.region-grid > div {
  background: #FFF;
  border-radius: 11px;
  padding: 18px 16px;
  min-width: 160px;
  box-shadow: 0 1px 5px 0 rgba(20,68,123,0.06);
  margin-bottom: 10px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .feature-item,
  .service-card {
    min-width: 0;
    width: 100%;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-section, .core-values, .unique-selling-points, .brand-story, .contact-options, .extras-list, .address-block, .contact-info {
  margin-bottom: 20px;
  gap: 14px;
}

/* --------------------------------------
   TESTIMONIALS
----------------------------------------*/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  min-width: 230px;
  max-width: 360px;
  box-shadow: 0 2px 10px 0 rgba(20,68,123,0.09);
  margin-bottom: 20px;
  color: #1c2733;
  border-left: 5px solid #F9A825;
}
.testimonial-card p:first-child {
  font-size: 1.07rem;
  font-style: italic;
  color: #2a4261;
}
.testimonial-card p:last-child {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e0ab36;
  letter-spacing: 1px;
  font-size: 1.2rem;
}
.testimonial-card b { color: #14447B; }
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* --------------------------------------
   BUTTONS & CTA
----------------------------------------*/
.cta, a.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  background: #F9A825;
  color: #14447B;
  font-size: 1.08rem;
  padding: 12px 28px;
  box-shadow: 0 2px 7px 0 rgba(20,68,123,0.08);
  margin-top: 8px;
  margin-right: 4px;
  margin-bottom: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.cta.primary, a.cta.primary {
  background: #14447B;
  color: #fff;
  font-weight: 700;
}
.cta:hover,
.cta:focus,
a.cta:hover,
a.cta:focus {
  background: #225fa6;
  color: #fff;
  transform: scale(1.04);
}
.cta.primary:hover, a.cta.primary:hover, .cta.primary:focus, a.cta.primary:focus {
  background: #F9A825;
  color: #14447B;
}

/* --------------------------------------
   FOOTER
----------------------------------------*/
footer {
  background: #fff;
  border-top: 1px solid #E6EBEF;
  box-shadow: 0 -1px 8px rgba(15,38,76,0.04);
  padding: 32px 0 20px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1rem;
}
footer nav a {
  color: #14447B;
  padding: 3px 6px;
  border-radius: 4px;
  transition: background 0.12s;
}
footer nav a:hover,
footer nav a:focus {
  background-color: #F4F6F8;
}
footer img {
  height: 36px;
  width: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* -------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #183146;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -2px 18px 0 rgba(52,65,80,0.15);
  border-top: 1px solid #CBD8E6;
  z-index: 5000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  animation: fadeInCookie 0.35s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  flex: 1 1 220px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin: 2px;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #F9A825;
  color: #14447B;
}
.cookie-btn.reject {
  background: #14447B;
  color: #fff;
}
.cookie-settings-btn {
  background: #F4F6F8;
  color: #14447B;
  border: 1px solid #CBD8E6;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #225fa6;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e74950;
  color: #fff;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #e2e7ed;
  color: #14447B;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,55,65,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5010;
  animation: fadeInCookie 0.25s;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px 0 rgba(10,34,65,0.19);
  max-width: 375px;
  width: 94vw;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop 0.22s;
}
@keyframes modalPop {
  0% {transform: scale(0.93); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: #14447B;
  width: 18px;
  height: 18px;
}
.cookie-modal .save-btn {
  align-self: flex-end;
  margin-top: 8px;
  background: #14447B;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  padding: 9px 22px;
  border: none;
  font-size: 1rem;
  transition: background 0.16s;
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: #225fa6;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #183146;
  opacity: 0.7;
}
.cookie-category.essential input[type=checkbox] {
  pointer-events: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 15px 7px 9px 7px;
  }
}

/* --------------------------------------
   FORMS & INTERACTIVE ELEMENTS
----------------------------------------*/
input, textarea, select {
  border: 1px solid #CBD8E6;
  border-radius: 6px;
  padding: 11px 12px;
  background: #fff;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #14447B;
  background: #F4F6F8;
}

label {
  margin-bottom: 6px;
  color: #14447B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* -------------------
   UTILITY
-------------------*/
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }
@media (max-width: 600px) {
  .mt-24 { margin-top: 14px!important; }
  .mb-24 { margin-bottom: 14px!important; }
}

/* --------------------------------------
   SCROLLBARS
----------------------------------------*/
::-webkit-scrollbar {
  width: 13px;
  background: #F4F6F8;
}
::-webkit-scrollbar-thumb {
  background: #CBD8E6;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F9A825;
}

/* --------------------------------------
   RESPONSIVE BREAKPOINTS
----------------------------------------*/
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.7rem;
  }
  h2, .h2 {
    font-size: 1.3rem;
  }
  h3, .h3 {
    font-size: 1.03rem;
  }
}

/* --------------------------------------
   MICRO-INTERACTIONS & TRANSITIONS
----------------------------------------*/
.card, .service-card, .feature-item, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.17s, border 0.12s;
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 6px 23px 0 rgba(20,68,123,0.13);
  transform: translateY(-3px) scale(1.012);
}

.cta, .cta.primary {
  transition: background 0.17s, color 0.11s, transform 0.19s;
}

header, footer, .section {
  transition: box-shadow 0.12s, background 0.15s, border 0.12s;
}

/* -------------------------------------
   SPECIALS (THANK YOU, ERROR, ETC)
---------------------------------------*/
.section ul {
  margin-top: 2px;
  margin-bottom: 10px;
  padding-left: 1.05em;
}
.section ul li {
  margin-bottom: 7px;
  line-height: 1.6;
}

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