/* ===============================
   CSS RESET & BASELINE 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;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #fff;
  color: #141414;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.005em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
a {
  color: #174168;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #222;
}
strong { font-weight: 600; }
ul, ol {
  margin-left: 1.25em;
  padding-left: 0.5em;
}
li {
  margin-bottom: 8px;
}
::-webkit-scrollbar { width: 8px; background: #f3f3f3; }
::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }

/* ==============================
   BRANDING & TYPOGRAPHY
   ============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #101010;
  letter-spacing: 0.008em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
}
p, ul, ol, li, blockquote, pre {
  color: #232323;
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  border-left: 3px solid #141414;
  margin-left: 0;
  padding-left: 20px;
  font-style: italic;
  color: #232323;
  background: #fafaf9;
  border-radius: 5px;
}
.text-section p, .text-section ul, .text-section {
  margin-bottom: 16px;
}

/* =====================
   LAYOUT SPACING
   ===================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px 0 rgba(24,24,24,.07);
  padding: 28px 22px;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(30,30,30,0.18);
  border-color: #174168;
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 24px 24px;
  margin-bottom: 20px;
  background: #FAFAFA;
  border: 1px solid #e1e1e1;
  border-radius: 13px;
  box-shadow: 0 2.5px 7px 0 rgba(35,35,35,0.045);
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(40,40,40,0.13);
  border-color: #bbb;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom section element spacing for correct vertical blocks */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

/* ==============================
   NAVIGATION (Desktop & Mobile)
   ============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(20,20,20, 0.08);
  position: relative;
  z-index: 13;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  padding: 18px 22px 18px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
}
.main-nav img {
  height: 43px;
  margin-right: 10px;
  padding: 0 0 2px 0;
}
.main-nav a {
  color: #202020;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
}
.main-nav a:hover, .main-nav a:focus {
  background: #191919;
  color: #FFD43B;
}
.main-nav .btn-primary {
  margin-left: 8px;
  background: #141414;
  color: #FFD43B !important;
  font-weight: 600;
  border-radius: 16px;
  border: 1px solid #141414;
  padding: 10px 20px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 1px 6px 0 rgba(22,22,22,0.08);
  letter-spacing: 0.01em;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #FFD43B;
  color: #191919 !important;
  border-color: #FFD43B;
  box-shadow: 0 2px 8px #FFD43B44;
}
header .mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #1a1a1a;
  border-radius: 7px;
  border: 1px solid #d9d9d9;
  font-size: 2rem;
  padding: 5px 12px 6px 12px;
  position: absolute;
  right: 19px;
  top: 15px;
  z-index: 30;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
header .mobile-menu-toggle:hover,
header .mobile-menu-toggle:focus {
  background: #F7F7F7;
  color: #174168;
}
/* ===============================
   MOBILE MENU & ANIMATION SYSTEM
   =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 320px;
  background: #141414;
  color: #fff;
  z-index: 70;
  box-shadow: -4px 0 30px #00000015;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.67,0,.46,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FFD43B;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 21px 18px 7px 0;
  cursor: pointer;
  border-radius: 7px;
  padding: 3px 12px 5px 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 12px 30px 22px 30px;
  margin-top: 12px;
  font-size: 1.18rem;
}
.mobile-nav a {
  color: #FFD43B;
  background: none;
  padding: 10px 4px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
  display: flex;
  align-items: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD43B33;
  color: #fff;
}

/* Show hamburger on mobile, hide nav */
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}

/* ============================
   HERO & PRIMARY BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #141414;
  color: #FFD43B !important;
  border-radius: 18px;
  border: 1.5px solid #141414;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 1.5px 7px 0 rgba(10,10,10,0.10);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, border 0.15s;
  border-bottom: 2.2px solid #FFD43B;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD43B;
  color: #191919 !important;
  border-color: #FFD43B;
  box-shadow: 0 4px 16px #FFD43B44;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 16px;
  background: #fff;
  color: #141414 !important;
  font-weight: 600;
  border: 1.5px solid #141414;
  font-size: 1rem;
  margin-top: 10px;
  box-shadow: 0 1px 6px 0 rgba(42,42,42,0.07);
  transition: color 0.19s, background 0.19s, border 0.15s, box-shadow 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #141414;
  color: #FFD43B !important;
  border-color: #FFD43B;
  box-shadow: 0 2px 9px #FFD43B55;
}
button, .btn-primary, .btn-secondary {
  outline: none;
}

/* ============================
   FLEXBOX GRIDS FOR FEATURES
   ============================ */
.feature-grid, .service-grid, .project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.feature-grid > div,
.service-grid > div,
.project-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 13px 0 rgba(20,20,20,0.075);
  flex: 1 1 235px;
  min-width: 230px;
  max-width: 340px;
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, border 0.13s;
  border: 1.5px solid #EAEBEB;
  margin-bottom: 20px;
  gap: 10px;
}
.feature-grid > div:hover,
.service-grid > div:hover,
.project-grid > div:hover {
  box-shadow: 0 6px 25px 0 rgba(30,30,30,0.10);
  border-color: #174168;
  z-index: 2;
}
.feature-grid img,
.service-grid img,
.project-grid img {
  width: 38px;
  margin-bottom: 13px;
}

/* FAQ Accordions - as simple monochrome drop boxes */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #fff;
  border: 1.5px solid #e2e2e2;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(22,22,22,0.07);
  padding: 18px 20px 17px 22px;
  transition: border 0.10s, box-shadow 0.10s;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  border-color: #141414;
  box-shadow: 0 4px 18px 0 rgba(20,20,20,0.10);
}
.faq-accordion h3 {
  font-size: 1.07rem;
  margin-bottom: 8px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card blockquote {
  font-size: 1.11rem;
  color: #232323;
  background: none;
  border-left: 3px solid #FFD43B;
  padding-left: 18px;
  margin: 0;
}
.testimonial-card p {
  font-size: 1rem;
  color: #101010;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #101010;
  color: #fff;
  padding: 38px 0 20px 0;
  box-shadow: 0 -3px 19px rgba(30,30,30,0.06);
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #FFD43B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD43B;
  color: #101010;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #e1e1e1;
  margin-bottom: 17px;
  margin-top: 8px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-copy {
  text-align: center;
  color: #ccc;
  font-size: 0.92rem;
  margin-top: 10px;
  letter-spacing: 0.006em;
}

/* =============================
   MAP/PLACEHOLDER STYLES
   ============================= */
.map-placeholder {
  background: #1919190C;
  border: 1px dashed #bbb;
  border-radius: 9px;
  padding: 26px;
  margin-top: 20px;
}
.map-placeholder em {
  color: #191919;
}

/* =============================
   COOKIE BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 80;
  background: #191919;
  color: #fff;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -4px 40px 5px #09090918;
  font-size: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  transition: transform 0.32s, opacity 0.21s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .btn-cookie {
  background: #FFD43B;
  color: #181818;
  font-weight: 700;
  border-radius: 13px;
  border: none;
  padding: 10px 20px;
  margin: 0 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 0.5px 5px 0 #FFD43B38;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #191919;
  color: #FFD43B;
  border: 1.5px solid #FFD43B;
}
.cookie-banner .btn-cookie-settings {
  background: none;
  color: #FFD43B;
  border: 1.2px solid #FFD43B;
  font-weight: 600;
  transition: background 0.15s, color 0.13s, border 0.13s;
}
.cookie-banner .btn-cookie-settings:hover,
.cookie-banner .btn-cookie-settings:focus {
  background: #FFD43B;
  color: #191919;
}

/* =============================
   COOKIE PREFERENCES MODAL
   ============================= */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s, visibility 0.18s;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  padding: 34px 28px 27px 28px;
  border-radius: 13px;
  width: 95vw;
  max-width: 430px;
  box-shadow: 0 8px 50px 0 #10101021;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.07rem;
}
.cookie-modal-content h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-category label {
  color: #141414;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #174168;
  border-radius: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  color: #FFD43B;
  border: none;
  font-size: 2.06rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 12px;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD43B33;
  color: #1a1a1a;
}

/* ==============================
   MISC
   ============================== */
.text-section ul {
  margin-bottom: 20px;
}
.text-section li {
  margin-bottom: 10px;
}
.text-section strong {
  color: #191919;
}

ul li img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ==============================
   RESPONSIVE FLEX & PADDING
   ============================== */
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid > div,
  .service-grid > div,
  .project-grid > div {
    min-width: 160px;
    max-width: unset;
    flex: 1 1 120px;
    padding: 22px 10px 15px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .service-grid, .project-grid, .card-container, .content-grid, .footer-contact {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start;
  }
  .main-nav {
    font-size: 0.98rem;
    gap: 13px;
  }
  .card {
    padding: 18px 9px;
  }
}
@media (max-width: 520px) {
  .section, section {
    padding: 26px 0 !important;
    margin-bottom: 38px !important;
  }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .testimonial-card {
    padding: 12px 7px;
  }
  .cookie-modal-content {
    padding: 18px 7px 15px 7px !important;
    font-size: 0.99rem;
  }
}
@media (max-width: 430px) {
  .footer-contact span {
    font-size: 0.97rem;
    gap: 4px;
  }
}

/* ==============================
   MICROINTERACTION EFFECTS
   ============================== */
.btn-primary, .btn-secondary, .btn-cookie, .cookie-banner .btn-cookie-settings, .main-nav a, .footer-nav a, .card, .feature-grid > div, .service-grid > div, .project-grid > div, .faq-accordion > div, .testimonial-card {
  transition: box-shadow 0.26s, background 0.20s, color 0.18s, border 0.16s;
}

a, .btn-primary, .btn-secondary, .btn-cookie, .main-nav a, .mobile-nav a, .footer-nav a {
  outline: none;
}

/* Hide outline by default, show only on keyboard focus */
a:focus, .btn-primary:focus, .btn-secondary:focus, .btn-cookie:focus, .main-nav a:focus, .mobile-nav a:focus, .footer-nav a:focus {
  outline: 2px solid #FFD43B;
  outline-offset: 1.5px;
}

/* =============================
   PRINT OPTIMIZATION
   ============================= */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
  a { color: #111 !important; text-decoration: underline; }
}

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