/* ----- CSS RESET & NORMALIZATION ----- */
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, 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;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #181818;
}
img {
  max-width: 100%;
  display: block;
  border-style: none;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
}
button {
  cursor: pointer;
}

/* ----- BRAND FONT & TYPOGRAPHY ----- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #181818;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #181818;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol {
  color: #282828;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
  color: #111;
}
small {
  font-size: 0.95em;
  color: #888;
}

/* ----- COLOR/BRAND MONOCHROME SOPHISTICATION ----- */
:root {
  --color-bg: #fff;
  --color-bg-alt: #f8f9fa;
  --color-primary: #181818;
  --color-secondary: #fff;
  --color-accent: #E4E4E4;
  --color-muted: #888;
  --color-card-shadow: rgba(30,30,30,0.06);
  --color-border: #E0E0E0;
  --brand-blue: #22415A;
  --brand-green: #8DC63F;
  --brand-accent: #F2F2F2;
  --brand-danger: #af2323;
}

/* ----- CONTAINERS, LAYOUTS, FLEXBOX ----- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-secondary);
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 16px var(--color-card-shadow);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(24,24,24,0.11);
  border-color: var(--brand-blue);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(30,30,30,0.12);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 470px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.19s, border 0.19s;
}
.testimonial-card strong {
  margin-top: 8px;
  font-size: 1rem;
  color: #181818;
}
.testimonial-card .stars {
  color: #333;
  font-size: 1.1em;
  letter-spacing: 3px;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 22px 18px;
  box-shadow: 0 2px 10px var(--color-card-shadow);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 300px;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item img {
  width: 38px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(24,24,24,0.13);
  border-color: var(--brand-blue);
}

/* Service Cards/Lists */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card, .service-item {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 7px var(--color-card-shadow);
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  position: relative;
  transition: border 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover, .service-item:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 6px 16px rgba(34,65,90,0.10);
}
.service-card .price, .service-item .price {
  font-size: 1.18em;
  font-weight: 600;
  color: #22415A;
  margin: 10px 0 0 0;
  letter-spacing: 0.5px;
}
.service-card a {
  margin-top: 10px;
  color: #181818;
  border-bottom: 1px dotted var(--brand-blue);
  font-size: 1em;
  transition: color 0.18s, border-color 0.19s;
}
.service-card a:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px var(--color-card-shadow);
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  position: relative;
}
.logo img {
  height: 44px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  z-index: 1;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07em;
  color: #22415A;
  padding: 8px 0px;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
.main-nav a:hover {
  border-bottom: 2.5px solid #181818;
  color: #181818;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 34px;
  color: #fff;
  background: #181818;
  border-radius: 999px;
  font-size: 1.13em;
  transition: background 0.2s, color 0.18s, box-shadow 0.16s;
  margin-left: 32px;
  box-shadow: 0 2px 12px var(--color-card-shadow);
  border: 1.5px solid #22415A;
  outline: 0;
  letter-spacing: 0.04em;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22415A;
  color: #fff;
  box-shadow: 0 6px 18px rgba(34,65,90,0.13), 0 0 0 4px #f2f2f2;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  border-radius: 6px;
  font-size: 1.75em;
  width: 48px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, box-shadow 0.14s;
  border: 1.5px solid #22415A;
}
.mobile-menu-toggle:hover {
  background: #22415A;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100vw);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(.41,1.49,.44,1), z-index 0s 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.25s, transform 0.30s cubic-bezier(.45,1.5,.35,1), z-index 0s;
}
.mobile-menu-close {
  background: #181818;
  color: #fff;
  font-size: 1.8em;
  border-radius: 6px;
  width: 48px;
  height: 44px;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  border: 1.5px solid #8dc63f;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #22415A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin: 40px 0 0 42px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  border-radius: 4px;
  outline: none;
  border-bottom: 1.5px solid transparent;
  transition: color 0.17s, border 0.17s, background 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #8DC63F;
  background: #222f37;
  border-bottom: 1.5px solid #8DC63F;
}

@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    height: 60px;
  }
}

/* ----- HERO SECTIONS ----- */
.hero {
  background: linear-gradient(90deg, #fff 60%, #f1f3f5 100%);
  border-bottom: 1px solid var(--color-border);
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  max-width: 880px;
  margin-left: 0;
}
.hero h1 {
  color: #181818;
  text-shadow: 0 4px 10px #f9f9f9, 0 1.5px 0 #eaeaea;
}
.hero p {
  font-size: 1.22em;
  color: #32343a;
  margin-bottom: 12px;
}

/* ----- FEATURES & ICONS ----- */
.features {
  background: #f4f4f6;
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-card-shadow);
  margin-top: 28px;
}
.feature-grid, .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.icon-grid img {
  width: 44px;
  height: 44px;
  opacity: 0.9;
  margin-right: 19px;
  margin-top: 14px;
  filter: grayscale(100%) contrast(145%);
}

/* ----- ABOUT / TEAM BIOS ----- */
.team-bio {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--color-card-shadow);
  padding: 19px 20px 18px 20px;
  margin-bottom: 16px;
}

/* ----- TESTIMONIALS ----- */
.testimonials {
  background: #f7f7f8;
  border-radius: 19px;
  box-shadow: 0 4px 18px var(--color-card-shadow);
}
.testimonials .content-wrapper {
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #181818;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(24,24,24,0.11);
  border: 1.5px solid var(--brand-blue);
  transition: border 0.16s, box-shadow 0.16s;
}
.testimonial-card:hover {
  border-color: #8DC63F;
  box-shadow: 0 6px 24px rgba(141,198,63,0.09), 0 2px 10px rgba(34,65,90,0.10);
}

/* ----- BUTTONS & INTERACTIVE ----- */
button, .cta-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(.97);
}

/* ----- FOOTER ----- */
footer {
  background: #181818;
  color: #fff;
  padding: 0;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 22px 0;
  border-bottom: 1px solid #313131;
}
.footer-contact, .footer-nav, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact h3 {
  font-size: 1.22em;
  color: #fff;
  margin-bottom: 8px;
}
.footer-contact p,
.footer-contact a {
  color: #f2f2f2;
  font-size: 1em;
  word-break: break-word;
}
.footer-nav {
  gap: 14px;
}
.footer-nav a {
  color: #acacac;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .16s;
}
.footer-nav a:hover {
  color: #fff;
  border-bottom: 1.5px solid #8DC63F;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.footer-social img {
  height: 30px;
  filter: grayscale(1) contrast(125%);
  opacity: .9;
  transition: opacity 0.14s, filter 0.16s;
}
.footer-social img:hover {
  filter: none;
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  padding: 16px 0;
  color: #cbcbcb;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

/* ----- FORMS, MISC, LEGAL/CONFIRMATION ----- */
.map-placeholder, .confirmation {
  background: #f6f6f7;
  border-radius: 12px;
  border: 1px solid #e3e3e3;
  padding: 26px 18px;
  margin-bottom: 18px;
  color: #404040;
  text-align: center;
}
.legal {
  background: #fafafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-card-shadow);
  margin-top: 30px;
  margin-bottom: 60px;
}
.legal .content-wrapper {
  align-items: flex-start;
}
.confirmation {
  border: 1.5px solid #8DC63F;
}

/* ----- MEDIA QUERIES / RESPONSIVE ----- */
@media (max-width: 950px) {
  .footer-main {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .footer-contact,
  .footer-nav,
  .footer-social {
    align-items: flex-start;
  }
}
@media (max-width: 800px) {
  .feature-grid, .service-cards, .service-list, .icon-grid, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 32px;
    padding: 24px 6px;
  }
  .hero {
    padding: 30px 0 32px 0;
  }
  h1 {
    font-size: 1.65rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hero .content-wrapper {
    align-items: stretch;
    margin-left: 0;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 14px 0;
  }
  .footer-main {
    padding: 24px 0 13px 0;
  }
}

@media (max-width:575px) {
  .footer-main {
    gap: 10px;
    padding: 9vw 0 8px 0;
  }
  .logo img {
    height: 29px;
  }
  .footer-social img {
    height: 24px;
  }
  h1,
  .hero h1 {
    font-size: 1.1rem;
  }
  .container {
    padding: 0 3vw;
  }
}

/* ----- COOKIE CONSENT BANNER ----- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: #181818;
  color: #fff;
  box-shadow: 0 -2px 15px rgba(34,65,90,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  gap: 24px;
  transition: transform 0.41s cubic-bezier(.81,-0.22,.46,1.11), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  font-size: 1em;
  margin-right: 14px;
  max-width: 440px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button.cookie-accept {
  color: #fff;
  background: #22415A;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1em;
  border: 1px solid #22415A;
  transition: background 0.22s, color 0.18s, box-shadow 0.16s;
}
.cookie-banner button.cookie-reject {
  color: #181818;
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1em;
  border: 1.2px solid #22415A;
  transition: background 0.18s, color 0.15s;
}
.cookie-banner button.cookie-accept:hover {
  background: #8DC63F;
  border-color: #22415A;
  color: #181818;
}
.cookie-banner button.cookie-reject:hover {
  color: #fff;
  background: #22415A;
  border-color: #181818;
}
.cookie-banner button.cookie-settings {
  color: #22415A;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px 16px;
  border: 1px solid #afafaf;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.cookie-banner button.cookie-settings:hover {
  color: #8DC63F;
  border-color: #8DC63F;
  background: #f2f2f2;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4vw 20px 4vw;
    gap: 11px;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 10050;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,30,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #181818;
  border-radius: 16px;
  max-width: 395px;
  width: 90vw;
  padding: 34px 28px 24px 28px;
  box-shadow: 0 10px 44px rgba(30,30,30,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  animation: cookieModalAppear 0.38s cubic-bezier(.71, 1.57, .49, .97);
}
@keyframes cookieModalAppear {
  0% { transform: scale(.85) translateY(130px); opacity: 0.3; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-content h2 {
  margin-bottom: 10px;
  font-size: 1.25em;
  color: #181818;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 1.07em;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-name {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 24px;
  background: #cbcbcb;
  border-radius: 12px;
  position: relative;
  transition: background 0.16s;
  margin-left: 3px;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 10px;
  transition: left .22s, background .18s;
}
.cookie-modal .cookie-toggle.enabled {
  background: #8DC63F;
}
.cookie-modal .cookie-toggle.enabled span {
  left: 20px;
  background: #8DC63F;
}
.cookie-modal .cookie-toggle.disabled {
  background: #cbcbcb;
}
.cookie-modal .cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  transition: background 0.15s, color 0.16s;
  font-weight: 600;
}
.cookie-modal .modal-actions .cookie-accept {
  background: #22415A;
  color: #fff;
  border: 1.5px solid #22415A;
}
.cookie-modal .modal-actions .cookie-accept:hover {
  background: #8DC63F;
  color: #181818;
}
.cookie-modal .modal-actions .cookie-cancel {
  background: #f6f6f6;
  color: #22415A;
  border: 1.5px solid #e3e3e3;
}
.cookie-modal .modal-actions .cookie-cancel:hover {
  background: #fff;
  color: #8DC63F;
}

/* ----- END MONOCHROME SOPHISTICATED CSS FILE ----- */
