/*-------------------------*/
/*    CSS RESET & BASICS   */
/*-------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a1a1a;
  background: #F6F7FA;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #244476;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.005em;
  margin-bottom: 0.7em;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
}
a {
  color: #244476;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #AE863A;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.25em;
}
strong {
  font-weight: 600;
  color: #244476;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
}
button, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.25s, color 0.15s, box-shadow 0.2s;
  box-sizing: border-box;
}
button:active, button:focus, .cta:active, .cta:focus {
  outline: 3px solid #AE863A;
  outline-offset: 2px;
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,32,54,0.05);
  transition: box-shadow 0.2s;
}
.section:last-child {
  margin-bottom: 0;
}

/*-----------------------------------*/
/*      MAIN NAVIGATION BAR          */
/*-----------------------------------*/
header {
  background: #ffffff;
  border-bottom: 1.5px solid #e4edf0;
  position: relative;
  z-index: 70;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.main-nav a {
  color: #244476;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a.cta {
  background: #AE863A;
  color: #fff;
  margin-left: auto;
  box-shadow: 0 1px 12px rgba(174,134,58,0.07);
  border-radius: 16px;
  padding: 12px 32px;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #967022;
  color: #fff;
  box-shadow: 0 2px 18px rgba(174,134,58,0.15);
}
.main-nav a:not(.cta):hover, .main-nav a:not(.cta):focus {
  background: #e4edf0;
  color: #AE863A;
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
  margin-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/*---------------------------*/
/*   MOBILE MENU BUTTON      */
/*---------------------------*/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #AE863A;
  border-radius: 12px;
  font-size: 2rem;
  position: absolute;
  right: 22px;
  top: 18px;
  padding: 8px 14px 8px 14px;
  z-index: 101;
  box-shadow: 0 1px 6px rgba(36,68,118,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #e4edf0;
  color: #967022;
}

/*-----------------------------*/
/*       MOBILE MENU           */
/*-----------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(36, 68, 118, 0.98);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.6,0,0.2,1);
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #fff;
  margin: 18px 28px 12px 0;
  align-self: flex-end;
  padding: 4px 10px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s, color 0.25s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #AE863A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 24px 34px 34px 34px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 14px 0px 14px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.17s, color 0.2s;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(174,134,58,0.14);
  color: #AE863A;
}

/*---------------------------------*/
/*       HERO SECTION STYLES       */
/*---------------------------------*/
.hero {
  background: linear-gradient(112deg, #e4edf0 35%, #fff 90%);
  min-height: 370px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 56px;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 320px;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
}
.hero h1 {
  font-size: 2.3rem;
  color: #244476;
  margin-bottom: 0.33em;
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5em;
  font-weight: 400;
}
.hero .cta {
  margin-top: 20px;
}

/*-----------------------------------*/
/*      CTA BUTTONS & BANNERS        */
/*-----------------------------------*/
.cta, a.cta {
  background: #AE863A;
  color: #fff !important;
  padding: 14px 38px;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 32px;
  box-shadow: 0 2px 15px rgba(174,134,58,0.07);
  transition: background 0.22s, box-shadow 0.22s, color 0.15s;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
}
.cta:hover, .cta:focus, a.cta:hover, a.cta:focus {
  background: #967022;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(174,134,58,0.18);
  text-decoration: none;
}
.cta-banner {
  background: #244476;
  color: #fff;
  padding: 32px 0;
  margin-bottom: 60px;
}
.cta-banner .container {
  display: flex;
  justify-content: center;
}
.cta-banner .content-wrapper {
  gap: 22px;
  align-items: center;
  text-align: center;
}
.cta-banner p {
  color: #fff;
  font-size:1.2rem;
  font-weight: 500;
}
.cta-banner .cta {
  margin-top: 10px;
  border: 2px solid #fff;
  background: #AE863A;
  color: #fff;
  font-size: 1.07rem;
}
.cta-banner .cta:hover, .cta-banner .cta:focus {
  background: #fff;
  color: #244476 !important;
  border-color: #AE863A;
}

/*-----------------------------*/
/*   FLEXBOX LAYOUT SECTIONS   */
/*-----------------------------*/
.feature_grid, .project_types, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature_grid > div, .project_types > div, .project-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(36,68,118,0.04);
  padding: 30px 22px;
  transition: box-shadow 0.23s, transform 0.15s;
  margin-bottom: 20px;
  border: 1.5px solid #e4edf0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
}
.feature_grid > div:hover, .project_types > div:hover, .project-list > div:hover {
  box-shadow: 0 4px 16px rgba(174,134,58,0.14);
  transform: translateY(-4px) scale(1.01);
}
.feature_grid > div img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}
.feature_grid h3 {
  font-size: 1.18rem;
  color: #967022;
  margin-bottom: 0.45em;
}
.icon_list, .benefit-list, .process_bullets, .project-facts ul, .case-summary ul, .text-section ul, main ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
  margin-bottom: 16px;
  margin-left: 1.25em;
}
.icon_list li, .benefit-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #244476;
  gap: 10px;
  background: #F6F7FA;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 500;
}
.icon_list img, .benefit-list img {
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.process_steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: decimal;
  margin-left: 1.7em;
  color: #244476;
  font-weight: 500;
}
.process_steps li {
  margin-bottom: 0.85em;
  font-size: 1.04rem;
}
.timeline {
  margin-top: 15px;
  border-left: 3px solid #AE863A;
  padding-left: 18px;
  color: #967022;
  font-style: italic;
  font-size: 1.04rem;
}
.workflow-overview, .project-lifecycle, .project-facts, .case-summary {
  margin-bottom: 24px;
}

/*-----------------------------*/
/*     TESTIMONIALS CARDS      */
/*-----------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px rgba(36,68,118,0.10);
  border-left: 5px solid #AE863A;
  padding: 20px 30px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(174,134,58,0.16);
}
.testimonial-card p {
  color: #244476;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5em;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #967022;
  font-size: 1rem;
  margin-top: 4px;
}

/*-----------------------------*/
/*  CONTENT AND UTILITY CLASSES*/
/*-----------------------------*/
.text-section {
  margin-bottom: 12px;
}
.address-block {
  background: #f3f5f8;
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(36,68,118,0.06);
}

main ul:not(.main-nav):not(.mobile-nav):not(.icon_list):not(.benefit-list):not(.process_steps) li {
  margin-bottom: 10px;
}
.text-section ul li {
  margin-bottom: 8px;
}
.project-facts ul li {
  color: #244476;
  font-weight: 500;
}

/*---------------------------------*/
/*    FOOTER NAVIGATION & INFO     */
/*---------------------------------*/
footer {
  background: #244476;
  color: #fff;
  padding: 36px 0 16px 0;
  margin-top: 40px;
}
 footer p {
  color: white;
 }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 13px;
  border-radius: 6px;
  transition: background 0.16s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #AE863A;
  background: rgba(255,255,255,0.07);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
  filter: grayscale(1) brightness(2);
}

/*-----------------------------*/
/*     ADDRESS SECTION         */
/*-----------------------------*/
.address-block p {
  color: #244476;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.address-block strong {
  color: #967022;
}

/*----------------------------*/
/*       MODALS & COOKIE      */
/*----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #244476;
  box-shadow: 0 -5px 28px rgba(36,68,118,0.10);
  border-top: 2px solid #AE863A;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  min-height: 84px;
  gap: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieIn 0.45s cubic-bezier(0.6,0,0.2,1);
}
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 260px;
  font-size: 1rem;
  margin-right: 18px;
  color: #244476;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn {
  background: #AE863A;
  color: #fff;
  border-radius: 10px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 4px;
  transition: background 0.2s, color 0.19s, box-shadow 0.19s;
  box-shadow: 0 1px 6px rgba(174,134,58,0.07);
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #967022;
  color: #fff;
  box-shadow: 0 2px 14px rgba(174,134,58,0.13);
}
.cookie-btn.secondary {
  background: #e4edf0;
  color: #244476;
  border: 1.5px solid #AE863A;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #AE863A;
  color: #fff;
}
/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36, 68, 118, 0.5);
  z-index: 10002;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalIn 0.37s cubic-bezier(0.6,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0.2; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 46px rgba(36,68,118,0.22);
  padding: 36px 30px 30px 36px;
  max-width: 420px;
  width: 95%;
  color: #244476;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #244476;
}
.cookie-modal label, .cookie-modal p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal input[type="checkbox"]:disabled+span {
  color: #888;
  font-style: italic;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #244476;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #AE863A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}

/*--------------------------*/
/*     CARD COMPONENTS      */
/*--------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px rgba(36,68,118,0.06);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 260px;
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(174,134,58,0.18);
  transform: translateY(-4px) scale(1.01);
}

.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;
}

/*----------------------------*/
/*    FORMS — GENERIC STYLE   */
/*----------------------------*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #e4edf0;
  border-radius: 7px;
  padding: 13px;
  outline: none;
  box-shadow: none;
  transition: border-color 0.16s, box-shadow 0.13s;
  margin-bottom: 22px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #967022;
  box-shadow: 0 0 0 2px #f5eddd;
}

/*-----------------------------*/
/*          UTILITIES          */
/*-----------------------------*/
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.flex-row { display: flex; flex-direction: row; gap: 20px; }
.flex-col { display: flex; flex-direction: column; gap: 20px; }
.centered { display: flex; justify-content: center; align-items: center; }

/*----------------------------*/
/*      RESPONSIVE DESIGN     */
/*----------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 900px) {
  .feature_grid, .project_types, .project-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature_grid > div, .project_types > div, .project-list > div {
    min-width: 170px;
    flex-basis: 95%;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .content-wrapper { gap: 22px; }
  .section { margin-bottom: 38px; padding: 20px 7px; border-radius: 9px; }
  .hero {
    min-height: 180px; padding-bottom: 20px; margin-bottom: 30px;
  }
  .hero .content-wrapper {
    padding: 16px 0;
  }
  .cta-banner { padding: 22px 0; margin-bottom: 30px; }
  .card, .feature_grid > div, .project_types > div, .project-list > div {
    padding: 16px 10px;
    border-radius: 7px;
  }
  .testimonial-card {
    padding: 15px 12px;
    border-left-width: 4px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    min-height: 90px;
  }
  .cookie-banner p { margin-bottom: 12px;margin-right: 0; }
  .cookie-buttons { gap: 10px; }
  .cookie-modal { padding: 17px 8px 19px 13px; border-radius: 9px; }
  .footer-nav { gap: 12px; }
  .text-image-section, .content-grid, .feature_grid, .project_types, .project-list {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 3vw;
  }
  .section { padding: 14px 2vw; }
  .cookie-banner { min-height: 100px; font-size: 0.98rem; }
}

/*-----------------------------------*/
/*    LUXURY_ACCENTS & MICRO FX      */
/*-----------------------------------*/
.card, .testimonial-card, .feature_grid > div, .project_types > div, .project-list > div,
.section, .cookie-modal {
  border: 1px solid rgba(174,134,58,0.06);
  background-clip: padding-box;
  box-shadow: 0 2px 10px rgba(174,134,58,0.04),0 4px 20px rgba(36,68,118,0.03);
}
.card:after, .feature_grid > div:after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #AE863A;
  border-radius: 2px;
  margin-top: 16px;
  opacity: 0.11;
}
/* GOLD DETAIL ON HOVER */
.card:hover:after,
.feature_grid > div:hover:after {
  opacity: 0.29;
  background: #967022;
}
hr {
  border: none;
  border-top: 1.5px solid #e4edf0;
  margin: 32px 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
td, th {
  text-align: left;
  border-bottom: 1.5px solid #e4edf0;
  padding: 8px 6px;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #244476;
  font-weight: bold;
  background: #f6f7fa;
}

/*-- HIDE cookie stuff for print --*/
@media print {
  .cookie-banner, .cookie-modal-overlay, .mobile-menu {
    display: none !important;
  }
}
