/* ----------------------------
   CSS RESET & BASE STYLES
----------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1A2537;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F7F7F7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #4374B7;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #225092;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ----------------------------
   BRAND FONTS
----------------------------- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', "Georgia", serif;
  font-weight: 700;
  color: #F7F7F7;
}
h1 { font-size: 2.4rem; line-height: 1.1; letter-spacing: 0.5px; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, li, span, label {
  color: #F7F7F7;
  font-size: 1.06rem;
  line-height: 1.8;
}
strong { font-weight: 700; }

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

/* ----------------------------
   CONTAINER & LAYOUTS
----------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232c3e;
  border-radius: 20px;
  box-shadow: 0 3px 22px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
  .section, .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ----------------------
   HEADER / NAVBAR
----------------------- */
header {
  background: #181d27;
  box-shadow: 0 3px 12px rgba(26,37,55,0.28);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 24px;
}
.logo img {
  width: 148px;
  height: auto;
  filter: grayscale(15%) contrast(1.15) drop-shadow(2px 2px 7px rgba(67, 116, 183, 0.07));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #c9d8ee;
  letter-spacing: 0.1em;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.18s;
  position: relative;
  padding: 4px 0 2px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #4374B7;
  transition: width 0.25s;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 1px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFFFFF;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: #4374B7;
  color: #FFF;
  font-family: 'Merriweather', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  padding: 13px 38px;
  font-size: 1.08rem;
  box-shadow: 0 4px 24px rgba(34,80,146,0.09);
  transition: background 0.25s, transform 0.16s, box-shadow 0.25s;
  border: 1.5px solid #325084;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 14px;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #225092;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px rgba(34,80,146,0.22);
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #c9d8ee;
  border: none;
  padding: 6px 12px;
  margin-left: 10px;
  line-height: 1;
  border-radius: 5px;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #232c3e;
  color: #FFF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181d27;
  z-index: 1111;
  transform: translateX(-104%);
  transition: transform 0.36s cubic-bezier(.61,-0.12,.19,1.04);
  padding: 40px 32px 24px 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #eeeeee;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 30px;
  transition: color 0.15s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #4374B7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  color: #fafcff;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  width: 100%;
  padding: 8px 0;
  border-radius: 4px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #225092;
}

/* MOBILE NAV SHOW/HIDE */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----------------------
    HERO / LANDING
----------------------- */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 44px 0;
  background: radial-gradient(circle at 60% 32%, #232c3e 67%, #1A2537 100%);
  box-shadow: 0 10px 40px rgba(43,54,82,0.19);
  border-radius: 0 0 28px 28px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 720px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #bcc5ce;
  font-size: 1.13rem;
}
.hero .cta-button {
  margin-top: 20px;
}

@media (max-width: 700px) {
  .hero {
    padding: 32px 0 28px 0;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

/* ----------------------
   FEATURES & CARDS
----------------------- */
.features, .about-summary, .about-details, .values, .services-overview, .team-profiles, .client-services, .blog-list, .contact-info, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232c3e;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.09);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: space-between;
}
.features .feature-grid li {
  flex: 1 1 210px;
  background: #232e41;
  border-radius: 13px;
  box-shadow: 0 2px 9px rgba(31,38,60,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 26px;
  margin-bottom: 20px;
  border: 1.5px solid #2d3850;
  transition: box-shadow 0.23s, border 0.23s, transform 0.19s;
  position: relative;
}
.features .feature-grid li:hover, .features .feature-grid li:focus-within {
  box-shadow: 0 8px 28px rgba(67, 116, 183, 0.13), 0 2px 5px #22304855;
  border: 1.5px solid #4374B7;
  transform: translateY(-4px) scale(1.025);
}
.features .feature-grid img {
  width: 48px; height: 48px;
  margin-bottom: 12px;
  filter: grayscale(0%) invert(7%) brightness(1.45);
}

.services-overview .service-list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.services-overview .service-list li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 312px;
  background: #222C3D;
  border-radius: 13px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  border: 1.5px solid #27334a;
  box-shadow: 0 2px 10px rgba(33,42,66,0.15);
  transition: border 0.22s, box-shadow 0.18s, transform 0.15s;
}
.services-overview .service-list li:hover, .services-overview .service-list li:focus-within {
  border-color: #4374B7;
  box-shadow: 0 8px 28px rgba(67,116,183,0.07), 0 2px 9px #22304833;
  transform: translateY(-4px);
}
.services-overview .service-list img {
  width: 46px; height: 46px;
  margin-bottom: 10px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #181d27;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(43,54,82,0.11);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.24s, border 0.18s;
  border: 1.5px solid #252a33;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(67,116,183,0.11), 0 2px 7px #22304855;
  border: 1.5px solid #4374B7;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

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

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #202739;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(34,40,56,0.13);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  color: #f7f7f7;
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F7F7F7;
  color: #232c3e;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(34,40,56,0.10);
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 1.5px solid #dde2eb;
  position: relative;
  transition: box-shadow 0.22s, border 0.17s, transform 0.22s;
}
.testimonial-card p,
.testimonial-card span{
  color: #232c3e;
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border: 1.5px solid #4374B7;
  box-shadow: 0 8px 30px rgba(67,116,183,0.10), 0 2px 7px #22304818;
  transform: translateY(-2px) scale(1.015);
}

@media (max-width: 800px) {
  .features .feature-grid, .services-overview .service-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 14px;
  }
  .features .feature-grid li, .services-overview .service-list li {
    padding: 22px 14px;
  }
}

/* ========== BLOG LIST ========== */
.blog-list .post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}
.blog-list .post-grid li {
  background: #232e41;
  border-radius: 12px;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  max-width: 355px;
  box-shadow: 0 2px 10px rgba(34,40,56,0.09);
  margin-bottom: 20px;
  border: 1.5px solid #25324b;
  transition: box-shadow 0.2s, border 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.blog-list .post-grid li h3 {
  color: #c2d4ef;
  font-size: 1.19rem;
  margin-bottom: 7px;
}
.blog-list .post-grid li p {
  color: #cbd2de;
}
.blog-list .post-grid li a {
  margin-top: auto;
  font-weight: 500;
  color: #4374B7;
  transition: color 0.18s;
}
.blog-list .post-grid li a:hover, .blog-list .post-grid li a:focus {
  color: #225092;
}
.blog-list .post-grid li:hover, .blog-list .post-grid li:focus-within {
  box-shadow: 0 9px 32px rgba(67,116,183,0.13), 0 2px 7px #22304812;
  border: 1.5px solid #4374B7;
  transform: translateY(-6px) scale(1.03);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  margin-top: 4px;
}
.category-filter a {
  padding: 7px 18px;
  border-radius: 20px;
  background: #232e41;
  color: #9fb6df;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #25324b;
  transition: background 0.15s, color 0.15s, border 0.2s;
}
.category-filter a:hover, .category-filter a:focus {
  background: #4374B7;
  color: #fff;
  border: 1px solid #4374B7;
}

/* ========== TEAM LIST ========== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.team-list li {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  background: #222C3D;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(34,40,56,0.09);
  border: 1.5px solid #26334b;
  padding: 26px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border 0.18s, box-shadow 0.19s, transform 0.17s;
}
.team-list li:hover, .team-list li:focus-within {
  border: 1.5px solid #4374B7;
  box-shadow: 0 9px 29px rgba(67,116,183,0.09), 0 2px 5px #22304811;
  transform: translateY(-3px) scale(1.018);
}
.team-list span {
  font-size: 0.97rem;
  color: #afceee;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 2px;
}

@media (max-width: 800px) {
  .team-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* ========== CTA SECTIONS ========== */
.cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #4374B7;
  border-radius: 22px;
  box-shadow: 0 3px 15px rgba(67,116,183,0.12), 0 1.5px 5px #0b101e0f;
  color: #fff;
  text-align: center;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .cta-button {
  background: #f7f7f7;
  color: #225092;
  font-weight: 900;
  border: 2px solid #fff;
  margin-top: 20px;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #fff;
  color: #4374B7;
  transform: translateY(-2px) scale(1.04);
  border: 2px solid #efefef;
}

/* ========== FOOTER ========== */
footer {
  background: #181d27;
  padding: 54px 0 34px 0;
  margin-top: 60px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -4px 22px rgba(26,37,55,0.11);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #aac2e4;
  font-size: 1rem;
  transition: color 0.19s;
  border-radius: 3px;
  padding: 2px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFFFFF;
  background: #4374B7;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 1rem;
  color: #a7acc0;
  align-items: center;
  justify-content: center;
}
.footer-contact span {
  color: #a7acc0;
}
.footer-copy {
  color: #667095;
  font-size: 0.95rem;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 700px) {
  footer .container {
    gap: 14px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
}

/* ========== CONTACT PAGE, ADDRESS ========== */
.contact-info ul, .client-services ul {
  margin: 18px 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info ul li,
.client-services ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c2d4ef;
}
.contact-info ul img {
  width: 21px;
  height: 21px;
  filter: grayscale(20%) brightness(1.2);
}
.address-details h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  color: #b8cedc;
}
.phone-email-hours {
  margin-top: 8px;
  color: #e8edfa;
}
.map-embed {
  margin-top: 14px;
  color: #b6bed0;
  font-style: italic;
}

/* ========== COOKIE CONSENT ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222c3d;
  color: #fff;
  padding: 26px 20px 20px 20px;
  box-shadow: 0 -6px 50px rgba(34,40,56,0.14);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-banner-in 0.53s cubic-bezier(.63,.22,.44,1.04);
}
@keyframes cookie-banner-in {
  0% {
    transform: translateY(120px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p {
  color: #fff;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.cookie-banner button {
  padding: 10px 26px;
  border-radius: 7px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin: 0 2px;
  border: none;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .accept {
  background: #4374B7;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #225092;
}
.cookie-banner .reject {
  background: #232c3e;
  color: #e8e8e8;
  border: 1.5px solid #aac2e4;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #d9534f;
  border: 1.5px solid #d9534f;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: #4374B7;
  border: 1.3px solid #4374B7;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ebf2fb;
  color: #225092;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,40,56,0.90);
  z-index: 2300;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-in 0.51s cubic-bezier(.72,.16,.23,1.05);
}
@keyframes cookie-modal-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal .modal-content {
  background: #f7f7f7;
  color: #1A2537;
  border-radius: 22px;
  box-shadow: 0 12px 60px rgba(34,40,56,0.15);
  padding: 40px 32px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal .modal-content h2 {
  color: #1A2537;
}
.cookie-modal .modal-content label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A2537;
  margin-bottom: 6px;
}
.cookie-modal .modal-content .close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #225092;
  cursor: pointer;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #4374B7;
  width: 22px; height: 22px;
}
.cookie-modal .cookie-category.essential label {
  color: #aac2e4;
}
.cookie-modal .cookie-category.essential input {
  accent-color: #bbb;
  background: #aaa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-actions .accept {
  background: #4374B7; color: #fff;
  border: none;
}
.cookie-modal .modal-actions .accept:hover, .cookie-modal .modal-actions .accept:focus {
  background: #225092;
}
.cookie-modal .modal-actions .reject {
  background: #f1f1f1;
  color: #222c3d;
  border: 1px solid #4374B7;
}
.cookie-modal .modal-actions .reject:hover, .cookie-modal .modal-actions .reject:focus {
  background: #d9534f;
  color: #fff;
  border: 1px solid #d9534f;
}

@media (max-width: 600px){
  .cookie-modal .modal-content {
    padding: 22px 10px;
    min-width: unset;
  }
  .cookie-banner{
    padding: 21px 8px 15px 8px;
  }
}

/* --------------
   UTILS/SPACING/FLEX
------------------- */
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.flex {
  display: flex;
}
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* -----------
   RESPONSIVE
------------ */
@media (max-width: 900px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .footer-copy { font-size: 0.86rem; }
}
@media (max-width: 700px){
  .container { padding-left: 2px; padding-right: 2px; }
  .footer-nav { gap: 10px; }
  .feature-grid, .service-list, .team-list, .post-grid {
    flex-direction: column;
    gap: 12px !important;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px !important;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 0.97rem;
  }
  .section, .about-summary, .services-overview, .team-profiles, .cta, .footer {
    padding: 24px 4px !important;
  }
  .blog-list .post-grid li, .feature-grid li, .service-list li, .team-list li {
    padding: 16px 6px;
    min-width: 0;
    max-width: 100%;
  }
}

/* -----------
   SELECTION / FOCUS
------------ */
::selection {
  background: #4374B7;
  color: #fff;
}
a:focus, button:focus, .cta-button:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid #4374B7;
  outline-offset: 2px;
}

/* -----------
   INDUSTRIAL EFFECTS
------------ */
.section, .about-summary, .services-overview, .team-profiles, .cta, .card, .feature-grid li, .service-list li, .testimonial-card {
  /* subtle metallic "reflection" using gradients */
  position: relative;
  overflow: hidden;
}
.section::before, .about-summary::before, .services-overview::before, .team-profiles::before, .cta::before,
.card::before, .feature-grid li::before, .service-list li::before, .testimonial-card::before{
  content: "";
  display: block;
  position: absolute;
  top: -22%; left: -60%;
  width: 80%; height: 160%;
  pointer-events: none;
  background: linear-gradient(110deg,rgba(255,255,255,0.02) 0%,rgba(180,200,222,0.09) 80%, rgba(180,200,222,0.00) 100%);
  transform: rotate(-2deg);
}

/* Industrial modern fonts */
body, p, ul, ol, span, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  text-shadow: 1.5px 1.5px 0px #11161f60;
}

/* Urban/industrial accent */
hr {
  border: none;
  border-top: 1.5px solid #364b6a;
  margin: 28px 0;
}

/* Inputs (forms) */
input, textarea, select {
  padding: 9px 12px;
  border-radius: 6px;
  background: #232c3e;
  color: #f7f7f7;
  border: 1.5px solid #4374B7;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #225092;
}

/* Utility classes for modal, overlays (z-indexes are strategically staggered) */
.overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,40,56,0.77);
  z-index: 1999;
}

/* Hide scrollbar for overlays */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  display: none;
}

/* ----------------------
   END OF CSS
----------------------- */
