/* -----------------------------------------
   CSS RESET & NORMALIZER
--------------------------------------------*/
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #181818;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}
h2 {
  font-size: 1.5rem;
  margin-top: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-top: 16px;
}
p {
  color: #272727;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  color: #232323;
  font-weight: 700;
}

/* -----------------------------------------
   PALETTE & THEME (MONOCHROME_SOPHISTICATED)
--------------------------------------------*/
:root {
  --color-primary: #232323;    /* ultra-dark gray for headings */
  --color-black: #111112;
  --color-white: #FCFCFC;
  --color-bg: #F7F7F7;
  --color-gray: #C2C3C7;
  --color-dark-gray: #2C2C2C;
  --color-mid-gray: #61616B;
  --color-light-gray: #E7E7EA;
  --color-accent: #2C365E;    /* from brand guidelines, as subtle accent */
  --color-focus: #E94F37;     /* brand secondary for focus */
  --color-cta: #111112;
  --shadow-xs: 0 1px 4px 0 rgba(20,20,20,0.04);
  --shadow-md: 0 4px 18px 0 rgba(30,30,30,.12);
  --radius: 12px;
}

/* -----------------------------------------
   GENERAL LAYOUT
--------------------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 10px;
  }
}

/* -----------------------------------------
   HEADER & NAVIGATION (FLEXBOX)
--------------------------------------------*/
header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  position: sticky;
  top: 0;
  z-index: 97;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px 0 16px 0;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  background: var(--color-white);
  transition: box-shadow 0.2s;
}
.main-nav img {
  height: 38px;
  margin-right: 16px;
}
.main-nav a {
  color: var(--color-black);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  padding: 8px 2px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: color .18s, background .16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-focus);
  background: var(--color-bg);
}
.main-nav .cta-btn {
  margin-left: 16px;
  padding: 12px 26px;
  background: var(--color-cta);
  color: #fff;
  border-radius: var(--radius);
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(30,30,30,.10);
  transition: background .2s, transform .14s, color .2s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--color-focus);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}



/* Hide navigation on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
}

/* -----------------------------------------
   MOBILE MENU (BURGER & OVERLAY)
--------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  width: 44px;
  height: 44px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 44px;
  font-size: 2rem;
  z-index: 120;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.13);
  border: 2px solid var(--color-black);
  transition: background .19s, color .15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-focus);
  color: #fff;
}
@media (max-width: 990px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Overlay Menu Styles */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,28,28,0.95);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.8,.1,.35,1.2);
  overflow-y: auto;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 28px;
  top: 16px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 2.2rem;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(20,20,20,.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .13s;
  z-index: 250;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-focus);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  padding: 16px 4px;
  border-radius: 5px;
  width: 100%;
  transition: color .18s, background .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-focus);
  background: rgba(255,255,255,0.08);
}

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

/* Prevent body scroll when menu is open (js will add .noscroll) */
body.noscroll { overflow: hidden; }

/* -----------------------------------------
   HERO SECTION
--------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #fff 65%, #e9e9f1 100%);
  border-bottom: 2px solid var(--color-light-gray);
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.13;
  margin-bottom: 18px;
  color: var(--color-primary);
  text-shadow: 0 2px 8px rgba(60,60,60,.05);
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-mid-gray);
  margin-bottom: 20px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* -----------------------------------------
   CTA BUTTONS
--------------------------------------------*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  background: var(--color-dark-gray);
  color: #fff;
  box-shadow: 0 1px 10px rgba(44,44,44,0.09);
  border: none;
  cursor: pointer;
  transition: background .22s, transform .13s, color .18s;
  margin-top: 0;
  margin-bottom: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-focus);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* -----------------------------------------
   SECTIONS & FLEXBOX LAYOUTS
--------------------------------------------*/
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 16px;
}
.feature-grid li {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius);
  padding: 20px 22px 16px 22px;
  flex: 1 1 225px;
  min-width: 230px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .15s, border .20s, transform .13s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 28px rgba(30,30,30,.12);
  border-color: var(--color-focus);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  height: 42px;
  width: auto;
  margin-bottom: 6px;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.83;
}
.feature-grid strong {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.feature-desc {
  color: var(--color-mid-gray);
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
  .feature-grid li {
    min-width: 170px;
    max-width: 99%;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.service-list, .service-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-list li strong, .service-categories li strong {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: var(--color-dark-gray);
}
.service-categories li {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 15px 20px;
  margin-bottom: 12px;
  transition: box-shadow .11s, border .18s;
}
.service-categories li:hover {
  border: 1.5px solid var(--color-focus);
  box-shadow: var(--shadow-md);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
  margin-top: 4px;
}
.text-section ul {
  margin: 8px 0 12px 24px;
  list-style: disc inside;
  color: var(--color-mid-gray);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section h2, .text-section h3 {
  margin-bottom: 4px;
  margin-top: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 10px;
}
.faq-list > div {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 18px 24px;
  font-size: 1.07rem;
}

.map-placeholder {
  margin: 28px 0 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  background: var(--color-bg);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 28px;
  min-width: 230px;
  max-width: 350px;
  flex: 1 1 220px;
  transition: box-shadow .17s, border .18s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-focus);
}

.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;
    gap: 16px;
    align-items: flex-start;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------------------
   TESTIMONIALS & REVIEWS
--------------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 28px;
  background: var(--color-bg);
  border: 1.5px solid var(--color-light-gray);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px 0 rgba(80,80,80,0.07);
  transition: border .16s, box-shadow .14s;
}
.testimonial-card:hover {
  border: 1.5px solid var(--color-focus);
  box-shadow: var(--shadow-md);
}
.testimonial-card .stars {
  color: #111;
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  color: #232323;
  font-size: 1.08rem;
  font-style: italic;
  margin: 0 0 5px 0;
}
.testimonial-card span {
  color: #61616B;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.customer-summaries {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 1px 8px rgba(44,44,44,.10);
  padding: 24px 22px;
  margin-top: 32px;
}
.customer-summaries h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--color-dark-gray);
}
.customer-summaries ul {
  font-size: 1rem;
  margin-left: 18px;
  color: var(--color-mid-gray);
  list-style: disc inside;
}
.customer-summaries li {
  margin-bottom: 6px;
}

/* -----------------------------------------
   FOOTER AREA
--------------------------------------------*/
footer {
  background: var(--color-black);
  color: var(--color-gray);
  padding: 38px 0 22px 0;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 2px solid var(--color-light-gray);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-gray);
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 5px 8px;
  border-radius: 3px;
  transition: color .18s, background .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-focus);
  background: rgba(255,255,255,0.02);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  justify-content: center;
  align-items: center;
  color: var(--color-mid-gray);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.96rem;
  margin-top: 0;
  text-align: center;
}
.footer-contact a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color .17s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-focus);
}

@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-contact {
    flex-direction: column;
    gap: 2px;
  }
}

/* -----------------------------------------
   COOKIE BANNER & MODAL
--------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  background: #232323;
  color: #fff;
  padding: 24px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 18px 0 rgba(10,10,10,0.12);
  font-size: 0.98rem;
  transition: transform 0.36s;
  gap: 16px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .banner-text {
  font-size: 1.07rem;
  color: #ededed;
  margin-bottom: 12px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  background: #fff;
  color: #232323;
  font-size: 1.05rem;
  padding: 10px 19px;
  border-radius: 8px;
  border: none;
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 2px;
  cursor: pointer;
  transition: background .19s, color .15s, box-shadow .15s;
  box-shadow: 0 1px 5px rgba(44,44,44,.10);
}
.cookie-btn.accept {
  background: var(--color-focus);
  color: #fff;
}
.cookie-btn.reject {
  background: #e4e4e4;
  color: #232323;
}
.cookie-btn.settings {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn:focus, .cookie-btn:hover {
  outline: none;
  background: var(--color-dark-gray);
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,10,0.60);
  align-items: center;
  justify-content: center;
}
.cookie-modal.show {
  display: flex;
  animation: fadein .21s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(10,10,10,0.18);
  padding: 32px 24px 22px 24px;
  min-width: 295px;
  max-width: 94vw;
  font-size: 1rem;
  animation: modaldrop .19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
}
@keyframes modaldrop {
  0% { transform: translateY(-28px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-focus);
  width: 18px;
  height: 18px;
}
.cookie-modal-content h2 {
  font-size: 1.14rem;
  color: #232323;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-bg);
  color: var(--color-black);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-focus);
  color: #fff;
}
.cookie-modal-content .cookie-actions {
  margin-top: 21px;
  display: flex;
  gap: 16px;
}
@media (max-width: 599px) {
  .cookie-modal-content {
    padding: 18px 7vw 18px 8vw;
    min-width: 96vw;
    max-width: 99vw;
  }
}

/* -----------------------------------------
   RESPONSIVE DESIGN (MOBILE FIRST)
--------------------------------------------*/
@media (max-width: 1000px) {
  .content-wrapper {
    gap: 18px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 750px) {
  body {
    font-size: 0.98rem;
  }
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.08rem;
  }
}
@media (max-width: 568px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 18px 2px;
    margin-bottom: 22px;
  }
}

/* -----------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
--------------------------------------------*/
a, .cta-btn, .main-nav a, .card, .feature-grid li, .cookie-btn {
  transition: color .19s, background .19s, border .13s, transform .11s, box-shadow .13s;
}
.card:active, .feature-grid li:active, .cta-btn:active {
  transform: scale(0.985);
}

/* -----------------------------------------
   UTILITY CLASSES
--------------------------------------------*/
.hide {
  display: none !important;
}
.mt-2 { margin-top: 10px !important; }
.mb-2 { margin-bottom: 10px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.w-100 { width: 100% !important; }

/* -----------------------------------------
   FORM ELEMENTS (for future use)
--------------------------------------------*/
input, textarea, select {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--color-light-gray);
  background: var(--color-bg);
  color: var(--color-dark-gray);
  padding: 10px 11px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border .12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-focus);
  outline: none;
}
label {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark-gray);
}

/* -----------------------------------------
   OVERRIDES FOR BRAND MONOCHROME EFFECT
--------------------------------------------*/
body, .container, .section, .card, .feature-grid li, .service-categories li, .faq-list > div, .testimonial-card, .customer-summaries, .cookie-modal-content {
  background: #fff;  /* light mode mono */
  color: #181818;
}
footer, .footer-nav a {
  background: var(--color-black);
}

/* Dramatic contrast for headings and links */
h1, h2, h3,  .main-nav a {
  color: #181818;
}
@media (max-width: 450px) {
  .cookie-banner { font-size: 0.95rem; padding: 15px 1vw; }
}

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