/* ===== CSS RESET / 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,
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;
}
footer li {
  color: white !important;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #151515;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #054267;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #222;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
button, input, select, textarea {
  font: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #151515;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
p, li, cite, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
}
strong {
  color: #111;
  font-weight: 600;
}
cite {
  font-style: normal;
  font-size: 0.98rem;
  color: #575757;
  margin-top: 8px;
  display: inline-block;
}

/* ===== GLOBAL CONTAINERS & SPACING ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.text-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(35,42,60,.07);
  border: 1px solid #e9eaea;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 26px 26px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 36px 0 rgba(10,27,37,.12);
  transform: translateY(-2px) scale(1.01);
}

/* ===== NAVIGATION ===== */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  z-index: 50;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  max-height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  position: relative;
  padding: 2px 2px;
  font-weight: 500;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #054267;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: #15191E;
  padding: 10px 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(10,16,20,.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  border: 1px solid #15191E;
}
.cta-btn:hover, .cta-btn:focus {
  background: #054267;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(5,66,103,0.12);
  transform: translateY(-1px) scale(1.015);
}

/* ==== MOBILE NAVIGATION (BURGER) ==== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #15191E;
  font-size: 2rem;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.14s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e8eaea;
  color: #054267;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw; height: 100dvh;
  pointer-events: none;
  opacity: 0;
  background: rgba(25,28,32,0.92);
  transition: opacity .36s cubic-bezier(.6,.04,.98,.34);
  display: flex;
  flex-direction: column;
  z-index: 202;
  transform: translateX(-100vw);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform .38s cubic-bezier(.62,.02,.88,.33), opacity .36s;
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 22px 30px 0 0;
  padding: 3px 9px 3px 8px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232323;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 45px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  padding: 7px 0;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #054267;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 12px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .cta-btn {
    font-size: 0.95rem;
    padding: 9px 14px;
  }
}

/* ====== FOOTER ====== */
footer {
  background: #1a1a1a;
  color: #f6f6f6;
  border-top: 2px solid #181c21;
  padding: 0 0 22px 0;
}
footer .container {
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 42px;
  padding-bottom: 6px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: #e7e7e7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #aaa;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  list-style: none;
  color: #c3c3c3;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 860px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding-top: 30px;
  }
}

/* ====== FEATURES, USPs, SERVICE LIST ====== */
.features, .usp-list, .service-list, .blog-list, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features li, .usp-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23272b;
  background: #fff;
  border-radius: 8px;
  padding: 8px 13px 8px 7px;
  font-size: 1rem;
  box-shadow: 0 1px 4px 0 rgba(47,50,52,0.07);
}
.features li img, .usp-list li img {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}
.service-list {
  margin-bottom: 40px;
}
.service-list li {
  background: #f8f9f9;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(56,64,72,0.06);
  padding: 26px 18px 22px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 6px 36px 0 rgba(5,66,103,0.07);
  transform: translateY(-2px) scale(1.01);
}
.service-list h3 {
  margin-bottom: 5px;
  color: #054267;
  font-weight: 600;
}
.service-list .service-price {
  color: #151c24;
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.usp-list {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .service-list li,
  .features li, .usp-list li {
    font-size: 0.99rem;
    padding: 15px 10px 13px 10px;
  }
}

/* ===== BLOG LIST ===== */
.blog-list {
  margin-bottom: 35px;
  gap: 24px;
}
.blog-list li {
  background: #f8f9fa;
  border-left: 4px solid #054267;
  border-radius: 8px;
  padding: 22px 16px 18px 24px;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(74, 79, 82, 0.05);
  transition: box-shadow 0.16s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.blog-list li a {
  color: #054267;
  font-weight: 600;
}
.blog-list li a:hover, .blog-list li a:focus {
  color: #15191E;
}

.categories-filter {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.categories-filter a {
  color: #14243a;
  background: #ececec;
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background 0.18s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #324758;
  color: #fff;
}

/* ===== TESTIMONIALS CARDS ===== */
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(10, 27, 37, 0.07), 0 1px 2px rgba(32,36,38,0.03);
  padding: 20px 28px;
  margin-bottom: 20px;
  gap: 20px;
  border: 1px solid #ececec;
  min-width: 0;
  flex-wrap: wrap;
  transition: box-shadow 0.16s, transform 0.11s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 40px rgba(5,66,103,0.13);
  transform: scale(1.012);
}
.testimonial-card p {
  color: #15191E;
  flex: 2 1 100px;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  font-weight: 500;
}
.testimonial-card cite {
  color: #575757;
  font-size: 0.99rem;
  font-style: italic;
  flex: 1 1 80px;
  margin-left: 14px;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 17px 10px;
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card p {
    font-size: 1.05rem;
  }
}

/* ===== FEATURE ITEMS ===== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 120px;
}

/* ==== CONTACT DETAILS ==== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-left: 0;
  margin-bottom: 16px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #23272b;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map-location {
  margin-top: 15px;
  background: #f8f9f9;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 13px 18px 11px 18px;
}

/* ====== CTA BANNER (IN-SECTIONS) ===== */
section .cta-btn {
  margin-top: 10px;
  align-self: flex-start;
}

/* ======= MODAL/COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #232a2d;
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  z-index: 999;
  min-height: 70px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .4s cubic-bezier(0.7,0,0.84,0.2), transform .4s cubic-bezier(0.7,0,0.84,0.2);
  font-size: 1rem;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1 1 400px;
  max-width: 700px;
  min-width: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 22px;
  font-size: 1rem;
  border: none;
  background: #fff;
  color: #15191E;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(56,64,72,0.04);
  transition: background 0.16s, color 0.16s, box-shadow 0.17s;
  margin: 0;
}
.cookie-btn:active, .cookie-btn:focus {
  outline: 2px solid #054267;
  outline-offset: 1px;
}
.cookie-btn.accept {
  background: #15191E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #054267;
}
.cookie-btn.reject {
  background: #fff;
  color: #15191E;
  border: 1px solid #15191E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e8eaea;
}
.cookie-btn.settings {
  background: transparent;
  color: #e5e9ef;
  border: 1px solid #e7e7e7;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1a2227;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 18px 7vw 18px 5vw;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* ====== COOKIE MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1999;
  background: rgba(25,28,32,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.68, 0.12, 0.99, 0.34);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #23272b;
  border-radius: 16px;
  box-shadow: 0 6px 36px 0 rgba(5,66,103,0.17);
  min-width: 300px;
  max-width: 94vw;
  width: 420px;
  padding: 30px 32px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 16px;
  background: none;
  border: none;
  color: #23272b;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 3px 8px;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e8eaea;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #e6e6e6;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #e5e5e5;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #054267;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-toggle:checked:before {
  left: 18px;
}
.cookie-category.disabled label, .cookie-category.disabled .cookie-toggle {
  opacity: 0.68;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 500px) {
  .cookie-modal {
    width: 98vw;
    min-width: unset;
    padding: 19px 7vw 14px 5vw;
    font-size: 0.98rem;
  }
}

/* ===== GENERAL RESPONSIVE GRID ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 1.07rem;
    margin-bottom: 8px;
  }
  .section {
    padding: 28px 6vw;
    margin-bottom: 38px;
  }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .content-wrapper {
    gap: 13px;
  }
}

@media (max-width: 550px) {
  .section {
    padding-left: 0;
    padding-right: 0;
  }
  footer .container, header .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* ===== UTILS & MICRO-ANIMATIONS ===== */
::-webkit-scrollbar {width: 9px; background: #fafbfc;}
::-webkit-scrollbar-thumb {background: #ececec; border-radius: 7px;}
html:focus-within { scroll-behavior: smooth; }
.fade-in {
  animation: fade-in .9s cubic-bezier(.57,.15,.68,.86);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== BRANDED MONOCHROME ===== */
body, .section, .card, .testimonial-card, .service-list li, .blog-list li, .cookie-modal, .map-location {
  background: #fff;
}
header, footer {
  background: #fff;
}
footer {
  background: #1a1a1a;
  color: #f6f6f6;
}

/* Remove grid/column based selectors if any accidentally present */
/* NO display: grid, NO grid-*, NO columns */
