/* ------------------------------------------------------------
RESET & BASE TYPOGRAPHY
-------------------------------------------------------------*/
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #154360;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: 600;
}

/* ------------------------------------------------------------
LAYOUT CONTAINERS & SECTIONS
-------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(21,67,96, 0.05);
}

/* ------------------------------------------------------------
TYPOGRAPHY
-------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #154360;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  line-height: 1.16;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 9px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}

p, ul li, ol li, .quote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #154360;
  margin-bottom: 10px;
  font-weight: 400;
}

.quote {
  font-style: italic;
  color: #13334f;
  background: #f5f8fa;
  border-left: 3px solid #D4A017;
  margin: 16px 0 8px 0;
  padding: 10px 18px;
  border-radius: 6px;
}

/* ------------------------------------------------------------
HEADER & NAVIGATION
-------------------------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #154360;
  font-weight: 500;
  padding: 4px 4px;
  border-radius: 4px;
  position: relative;
  transition: background 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D4A017;
  background: rgba(212,160,23,0.08);
}
.cta-button {
  padding: 11px 30px;
  border-radius: 26px;
  background: #D4A017;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(212,160,23,0.08);
  transition: background 0.15s, box-shadow 0.18s, color 0.16s;
  cursor: pointer;
  margin-left: 18px;
  display: inline-block;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #154360;
  color: #FFF !important;
  box-shadow: 0 2px 14px rgba(21,67,96,0.12);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #154360;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  padding: 6px 12px;
  margin-left: 12px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F2E9DC;
}


/* ---------------------------------------------------------------
MOBILE NAVIGATION
-----------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #154360;
  font-size: 2.1rem;
  padding: 12px 12px 6px 6px;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 22px;
  margin-bottom: 22px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F2E9DC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 6px 0 10px 8px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #154360;
  font-weight: 500;
  padding: 12px 0 12px 6px;
  transition: background 0.18s, color 0.14s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D4A017;
  background: rgba(212,160,23,0.08);
}

/* Hide desktop nav on mobile, display burger */
@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* Hide mobile menu on desktop */
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------------------------------------------
HERO SECTION / PROMINENT SECTIONS
-------------------------------------------------------------*/
.hero {
  padding: 64px 0 44px 0;
  background: #F2E9DC;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px 0 rgba(21,67,96, 0.03);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #154360;
  font-size: 2.7rem;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.15rem;
  color: #13334f;
  margin-bottom: 22px;
}
.hero .cta-button {
  margin-top: 8px;
}

/* ------------------------------------------------------------
FEATURES / CARDS / FLEX WRAPS
-------------------------------------------------------------*/
.features-grid, .card-container, .project-list, .content-grid, .services-list, .values-list, .process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,67,96,0.07);
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2E9DC;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  min-width: 60px;
  box-shadow: 0 1px 4px rgba(212,160,23,0.08);
  margin-bottom: 0;
}
.feature-icon img {
  width: 32px;
  height: 32px;
}
.feature-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 180px;
}
.features-grid {
  gap: 32px 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.features-grid .feature-icon,
.features-grid .feature-description {
  flex: 1 1 220px;
  min-width: 160px;
  margin-bottom: 0 !important;
}

/* ------------------------------------------------------------
LIST SECTIONS & VALUES
-------------------------------------------------------------*/
.values-list {
  flex-direction: column;
  gap: 20px;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.values-list img {
  width: 28px; height: 28px;
}
.services-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.services-list li {
  background: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(21,67,96,0.06);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  width: 100%;
  max-width: 332px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.services-list li:hover {
  box-shadow: 0 6px 14px rgba(21,67,96,0.14);
  transform: translateY(-3px) scale(1.012);
}
.services-list img {
  width: 34px; height: 34px;
}
.process-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.process-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f5f8fa;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(21,67,96,0.06);
  min-width: 230px;
  padding: 20px 14px;
  gap: 10px;
  margin-bottom: 20px;
}
.process-list img {
  width: 32px; height: 32px;margin-bottom:4px;
}

/* ------------------------------------------------------------
TESTIMONIALS
-------------------------------------------------------------*/
.testimonial-card, .testimonial-slider .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #F2E9DC;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(21,67,96, 0.07);
  padding: 20px 22px 18px 22px;
  margin-bottom: 24px;
  max-width: 540px;
}
.testimonial-card p {
  color: #154360;
  font-size: 1.04rem;
  margin-bottom: 7px;
}
.testimonial-card strong {
  color: #13334f;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card span {
  color: #D4A017;
  font-size: 1.18rem;
  letter-spacing: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* ------------------------------------------------------------
PROJECTS
-------------------------------------------------------------*/
.project-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
}
.project-list .text-section {
  background: #f5f8fa;
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 1px 4px rgba(21,67,96,0.05);
}

/* ------------------------------------------------------------
TEXT SECTIONS, GENERIC BLOCKS
-------------------------------------------------------------*/
.text-section {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section.contact-details p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
}
.text-section.map-embed {
  padding: 20px 0 0 0;
}

/* ------------------------------------------------------------
FOOTER
-------------------------------------------------------------*/
footer {
  background: #F2E9DC;
  border-top: 1px solid #ededed;
  margin-top: 32px;
  padding-top: 36px;
  color: #13334f;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
}
.footer-main .logo img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #13334f;
  font-weight: 500;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #D4A017;
}
.footer-contact {
  font-size: 0.99rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #154360;
}
.footer-contact img {
  width: 20px; height: 20px;
}
.footer-legal {
  font-size: 0.9rem;
  color: #676767;
  margin-top: 20px;
  text-align: center;
  padding-bottom: 18px;
}

/* -----------------------------------------------------------
COOKIES CONSENT BANNER & MODAL
------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 14px;
  max-width: 420px;
  background: #fff;
  color: #154360;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(21,67,96,0.09);
  z-index: 12000;
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  transition: transform 0.25s, opacity 0.17s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(65px);
}
.cookie-banner h4 {
  margin-bottom: 6px;
  font-size:1.14rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 20px;
  margin: 0;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-accept {
  background: #D4A017;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #154360;
  color: #FFF;
}
.cookie-reject {
  background: #F2E9DC;
  color: #154360;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #ededed;
}
.cookie-settings {
  background: transparent;
  color: #154360;
  border: 1px solid #154360;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F2E9DC;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 12500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,67,96, 0.16);
  backdrop-filter: blur(1px);
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(21,67,96,0.15);
  max-width: 420px;
  width: 90vw;
  padding: 34px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookie-modal-in 0.28s cubic-bezier(.78,.1,.18,.85);
}
@keyframes cookie-modal-in {
  from {
    opacity: 0;
    transform: translateY(-32px) scale(.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cookie-modal h3 {
  font-size: 1.24rem;
  margin-bottom: 7px;
}
.cookie-category {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-toggle {
  margin-left: auto;
  accent-color: #D4A017;
  width: 26px;
  height: 26px;
  position: relative;
}
.cookie-category.essential .cookie-toggle {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #154360;
  font-size: 2rem;
  position: absolute;
  top: 18px; right: 24px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s;
  padding: 4px 10px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F2E9DC;
}

/*
-------------------------------------------------------------
RESPONSIVE DESIGN
-------------------------------------------------------------*/
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .services-list li, .process-list li, .project-list .text-section, .card {
    min-width: 100%;
    max-width: unset;
  }
  .project-list {
    flex-direction: column;
    gap: 22px;
  }
  .footer-main {
    flex-direction: column;
    gap: 23px;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.32rem;}
  .hero {padding: 34px 0 20px 0;}
  .hero h1 {font-size: 1.44rem;}
  .container {padding-left: 12px; padding-right: 12px;}
  .section {padding: 32px 6px; margin-bottom: 38px;}
  .features-grid, .card-container, .content-grid, .services-list, .values-list, .process-list, .testimonial-slider,.project-list {
    flex-direction: column !important;
    gap: 20px;
  }
  .card {padding: 18px 10px;}
  .cta-button {margin-left: 0; width: 100%; text-align:center;}
  .footer-main {flex-direction: column; gap:18px;}
  .cookie-banner {padding: 19px 8px 14px 12px; max-width: 95vw;}
  .cookie-modal {padding: 19px 6px 16px 12px;}
}
@media (max-width: 480px) {
  h1 {font-size: 1.27rem;}
  h2 {font-size: 1.02rem;}
  .section {padding: 21px 1px; margin-bottom: 26px;}
  .hero {padding: 18px 0 12px 0;}
  .footer-main {flex-direction: column;gap:10px;}
}

/*
-------------------------------------------------------------
INTERACTIONS & MICRO-ANIMATIONS
-------------------------------------------------------------*/
a, .cta-button, button, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: color 0.15s, background 0.15s, box-shadow 0.18s, border 0.15s;
}
.card, .services-list li, .process-list li {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .services-list li:hover, .process-list li:hover {
  box-shadow: 0 7px 19px rgba(21,67,96,0.14);
  transform: translateY(-3px) scale(1.01);
}
input[type=checkbox].cookie-toggle {
  accent-color: #D4A017;
  width: 22px; height: 22px;
}

/*
-------------------------------------------------------------
MISC
-------------------------------------------------------------*/
::-webkit-scrollbar { width: 9px; background: #F2E9DC; }
::-webkit-scrollbar-thumb { background: #D4A017; border-radius: 8px; }


/* Hide when JS hides */
[hidden] { display: none !important; }
