/* ==========================
   CSS RESET & BASE
============================= */
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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #fff;
  color: #283B52;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #283B52;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F7C948;
  outline: none;
}
ul, ol {
  padding-left: 20px;
}
li + li {
  margin-top: 12px;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 20px;
}

/* ==========================
   TYPOGRAPHY
============================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
}
p {
  margin-bottom: 16px;
}
blockquote {
  font-size: 1.18rem;
  font-style: italic;
  color: #283B52;
  margin-bottom: 8px;
  line-height: 1.5;
}
strong { font-weight: 600; }

/* ==========================
   HEADER
============================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(40, 59, 82, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 36px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #283B52;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.17s, color 0.17s;
}
nav a:hover, nav a.active {
  color: #F7C948;
  border-bottom: 2px solid #F7C948;
}

/* Hide mobile nav button on desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 991px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px; top: 18px;
    width: 42px;
    height: 42px;
    background: none;
    border: none;
    color: #283B52;
    font-size: 2.4rem;
    z-index: 2002;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.18s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: rgba(40,59,82,0.09);
    outline: none;
  }
  header .btn-primary {
    display: none;
  }
}
/* ==========================
   BUTTONS
============================= */
.btn-primary {
  background: #283B52;
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(40,59,82,0.09);
  transition: background 0.16s, box-shadow 0.2s, color 0.16s, transform 0.15s;
  outline: none;
  text-align: center;
  display: inline-block;
  margin-top: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F7C948;
  color: #283B52;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 12px rgba(40,59,82,0.12);
}
.price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #283B52;
  background: #F4F7FB;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 14px;
  margin-top: 10px;
}

/* ==========================
   FLEX SPACING PATTERNS
============================= */
/* Section layout */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  .section {
    padding: 28px 5px;
    margin-bottom: 32px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px rgba(40,59,82,0.08);
  padding: 24px;
  min-width: 250px;
  flex: 1 1 280px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px rgba(40,59,82,0.16);
  transform: translateY(-4px) scale(1.015);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F7FB;
  border-radius: 10px;
  box-shadow: 0 1px 9px rgba(40,59,82,0.06);
  margin-bottom: 20px;
  min-height: 100px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==========================
   PAGE WRAPPER ELEMENTS
============================= */
main {
  margin-bottom: 60px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-box {
  background: #fff;
  padding: 22px 18px 22px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(40,59,82,0.09);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.16s;
  min-width: 230px;
  max-width: 310px;
  flex: 1 1 250px;
  margin-bottom: 10px;
}
.service-box:hover, .service-box:focus-within {
  box-shadow: 0 8px 24px rgba(40,59,82,0.11);
  transform: translateY(-2px) scale(1.01);
}
.service-box img {
  height: 34px;
  width: 34px;
  margin-bottom: 8px;
}

.blog-featured {
  padding: 28px 22px;
  background: #F4F7FB;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(40,59,82,0.07);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-list article {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(40,59,82,0.07);
  flex: 1 1 290px;
  padding: 22px 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.blog-list article:hover {
  box-shadow: 0 6px 22px rgba(40,59,82,0.12);
  transform: translateY(-2px);
}
.blog-categories {
  margin-top: 24px;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-categories a {
  background: #F4F7FB;
  padding: 5px 18px;
  border-radius: 18px;
  font-size: 0.96rem;
  color: #283B52;
  transition: background 0.14s, color 0.14s;
}
.blog-categories a:hover {
  background: #F7C948;
  color: #283B52;
}

/* ==========================
   TESTIMONIALS
============================= */
.testimonial-card {
  color: #283B52;
  background: #F4F7FB;
  box-shadow: 0 1px 12px rgba(40,59,82,0.10);
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  min-height: 92px;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #283B52;
  margin: 0 0 4px 0;
  line-height: 1.4;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #283B52;
  opacity: 0.89;
  align-self: flex-end;
}
.testimonial-card:before {
  content: "\201C";
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F7C948;
  margin-right: 3px;
  margin-top: -4px;
}
.testimonial-card:last-child { margin-bottom: 0; }

/* ==========================
   FOOTER
============================= */
footer {
  background: #fff;
  border-top: 1px solid #F4F7FB;
  margin-top: 60px;
  padding: 40px 0 32px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #283B52;
  font-size: 0.96rem;
  opacity: 0.92;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7C948;
}
.footer-social {
  gap: 16px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.93;
  transition: opacity 0.12s;
}
.footer-social a:hover img {
  opacity: 1;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.footer-info {
  font-size: 0.98rem;
  color: #283B52;
  opacity: 0.86;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-info a {
  color: #283B52;
  border-bottom: 1px dotted #F7C948;
  transition: border 0.15s;
}
.footer-info a:hover { border-bottom: 1px solid #F7C948; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ==========================
   MOBILE MENU
============================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 59, 82, 0.98);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.47,1.46,.39,.98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none;
  border: none;
  color: #F7C948;
  font-size: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 4000;
  border-radius: 6px;
  padding: 7px;
  transition: background 0.12s;
}
.mobile-menu-close:focus {
  background: rgba(247,201,72,0.1);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 100px;
  padding-left: 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.16s, border 0.16s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7C948;
  border-bottom: 1.5px solid #F7C948;
}

@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Overlay fix for mobile menu */
body.menu-open {
  overflow: hidden !important;
}

/* ==========================
   RESPONSIVE DESIGN
============================= */
@media (max-width: 1050px) {
  .service-list, .card-container { gap: 14px; }
}
@media (max-width: 800px) {
  .container { max-width: 98vw; }
  .service-list, .card-container, .content-grid, .project-list, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-box, .card, .blog-list article {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .feature-item {
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .footer-nav, .footer-info, .footer-social, .footer-brand {
    align-items: flex-start;
  }
  .footer-brand img {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .content-wrapper, .section {
    padding: 18px 2.5vw;
  }
  .service-list { gap: 8px; }
  footer .container { gap: 14px; }
}
/* Unique classes for featured html parts */
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.business-growth-metrics {
  margin-top: 20px;
  padding: 18px 14px;
  background: #F4F7FB;
  border-radius: 10px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.trust-badges img {
  width: 42px; height: 42px;
  filter: grayscale(0.3) brightness(1.09);
}
.customer-logos {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
}
.customer-logos img {
  width: 54px; height: 54px;
  opacity: 0.9;
}
.company-info-box {
  background: #F4F7FB;
  padding: 18px 22px;
  border-radius: 9px;
  box-shadow: 0 1px 9px rgba(40,59,82,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.map-placeholder {
  margin-top: 12px;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(40,59,82,0.09);
}

/* ===============================
   COOKIE CONSENT BANNER/MODAL
================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #283B52;
  color: #fff;
  padding: 18px 20px 18px 21px;
  z-index: 5000;
  box-shadow: 0 -2px 18px rgba(40,59,82,0.13);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookieBannerIn .45s cubic-bezier(.38,1.15,.18,1) 1;
}
@keyframes cookieBannerIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__msg {
  flex: 1 1 260px;
  min-width: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 19px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: #F7C948;
  color: #283B52;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe79c;
  color: #283B52;
}
.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid #F7C948;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7C948;
  color: #283B52;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.5px solid #F7C948;
  color: #F7C948;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F7C948;
  color: #283B52;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    font-size: 0.98rem;
    padding: 13px 7vw 13px 7vw;
  }
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5200;
  background: rgba(40,59,82,0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: cookieModalIn .32s cubic-bezier(.23,1.24,.38,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__box {
  background: #fff;
  color: #283B52;
  border-radius: 12px;
  padding: 36px 28px 30px 28px;
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 2px 34px rgba(40,59,82,0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalBoxIn 0.36s cubic-bezier(.32,1.18,.41,1);
  position: relative;
}
@keyframes cookieModalBoxIn {
  from { transform: scale(0.96) translateY(32px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  border: none;
  color: #283B52;
  font-size: 1.75rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.13s;
  padding: 4px 6px 2px 6px;
}
.cookie-modal__close:focus { background: #F4F7FB; outline: none; }
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  margin-bottom: 8px;
  font-weight: bold;
  color: #283B52;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid #F4F7FB;
  padding-bottom: 10px;
}
.cookie-modal__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-modal__item-label {
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #F4F7FB;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  border: 1px solid #D6DFEB;
  transition: background 0.13s, border 0.13s;
}
.cookie-toggle[aria-checked="true"] {
  background: #F7C948;
  border-color: #F7C948;
}
.cookie-toggle-inner {
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(40,59,82,0.12);
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.14s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-inner {
  left: 21px;
}
.cookie-modal__desc {
  font-size: 0.99rem;
  color: #667289;
  margin-top: -8px;
  margin-bottom: 6px;
}
.cookie-modal__footer {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal__item[aria-disabled="true"] {
  opacity: 0.54;
  pointer-events: none;
}

@media (max-width: 550px) {
  .cookie-modal__box {
    min-width: 96vw;
    padding: 18px 6vw 16px 6vw;
  }
  .cookie-modal__footer {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================
   MISC UTILS
============================= */
::selection {
  background: #F7C948;
  color: #283B52;
}
hr {
  border: 0;
  border-bottom: 1px solid #F4F7FB;
  margin: 36px 0;
}

/* Placeholder style for maps */
.map-placeholder img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  background: #F4F7FB;
}

/* ==========================
   FORM STYLES (for contact.html)
============================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1.5px solid #D6DFEB;
  border-radius: 7px;
  background: #F9FAFB;
  color: #283B52;
  outline: none;
  transition: border 0.16s, box-shadow 0.17s;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F7C948;
  box-shadow: 0 2px 10px rgba(247,201,72,0.07);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
  color: #283B52;
}

/* ==========================
   ACCESSIBILITY & FOCUS
============================= */
:focus-visible {
  outline: 2.5px solid #F7C948;
  outline-offset: 2px;
}

/* ==========================
   PRINT STYLE (Minimal)
============================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body, main, .container, .content-wrapper {
    background: #fff !important;
    color: #000;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .btn-primary, a.btn-primary {
    display: none !important;
  }
}

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