/* ------------------------ CSS RESET & NORMALIZE ---------------------------- */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #151515;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  outline: none;
  border: none;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

/* --------------------- BRAND & COLOR PALETTE (Monochrome Sophisticated) -------------------- */
:root {
  --mono-black: #151515;
  --mono-gray-dark: #262626;
  --mono-gray: #444;
  --mono-gray-mid: #888888;
  --mono-gray-light: #eaeaea;
  --mono-bg: #FFF;
  --mono-highlight: #f8f8f6;
  --primary: #151515; /* as monochrome, darkened */
  --accent: #fff; /* Buttons etc. - strong contrast */
  --link: #232323;
  --danger: #b00020;
  --shadow: rgba(25,25,25,0.08);
  --shadow-strong: rgba(0,0,0,0.12);
  --border-soft: #dfdfdf;
}

/* -------------------------------- TYPOGRAPHY --------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.22;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}

p, li, span, a {
  font-size: 1rem;
  color: var(--mono-gray);
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
b, strong {
  color: var(--mono-black);
  font-weight: 700;
}

/* --------------------------------- LAYOUT ---------------------------------------- */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-container, .footer-container {
  display: flex;
  align-items: center;
  justification: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.header-container {
  min-height: 80px;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0 0 0;
}
.footer-container {
  border-top: 1px solid var(--border-soft);
  padding: 32px 0 16px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-bg);
  border-radius: 18px;
  box-shadow: 0 4px 24px var(--shadow);
}

/* Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--mono-bg);
  border-radius: 14px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  flex: 1 1 280px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Grids */
.content-grid,
.city-grid,
.feature-grid,
.feature-list,
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.content-grid > *,
.city-grid > *,
.feature-grid > *,
.feature-list > *,
.team-list > * {
  flex: 1 1 270px;
  min-width: 230px;
  background: var(--mono-highlight);
  border-radius: 12px;
  box-shadow: 0 1px 4px var(--shadow);
  padding: 24px 18px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: var(--mono-black);
  padding: 20px 28px;
  margin-bottom: 26px;
  border-radius: 12px;
  box-shadow: 0 4px 24px var(--shadow-strong);
  border: 1px solid var(--border-soft);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--mono-black);
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: var(--mono-gray-mid);
  font-size: 0.98rem;
  font-weight: 500;
}

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

/* ---------------------------------------- HEADER & NAV ----------------------------------- */
header {
  background: var(--mono-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px var(--shadow);
}
.logo-link img {
  height: 44px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: var(--mono-gray);
  padding: 6px 0 2px 0;
  position: relative;
}
nav a:hover,
nav a:focus {
  color: var(--mono-black);
}
nav a::after {
  display: block;
  content: '';
  height: 2px;
  background: var(--mono-gray-light);
  transition: background 0.15s;
  width: 100%;
  transform: scaleX(0);
}
nav a:hover::after,
nav a:focus::after {
  background: var(--mono-black);
  transform: scaleX(1);
}

/* Hamburger Mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--mono-bg);
  border: 1px solid var(--mono-gray-light);
  border-radius: 8px;
  font-size: 2.09rem;
  color: var(--mono-black);
  cursor: pointer;
  padding: 4px 14px 2px 14px;
  transition: box-shadow 0.16s, background 0.2s;
  margin-left: 16px;
  z-index: 203;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--mono-gray-light);
  box-shadow: 0 2px 8px var(--shadow);
}
/* Hide nav on mobile */
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------------------------- MOBILE MENU OVERLAY ---------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,16,16,0.98);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.5,0.05,0.1,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--accent);
  background: transparent;
  margin: 22px 18px 0 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 12px;
  transition: background 0.2s;
  overflow: visible;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(255,255,255,0.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin: 60px 0 0 0;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  color: #FCFCFC;
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 8px 0 6px 0;
  border-radius: 4px;
  width: calc(100vw - 60px);
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--mono-gray-dark);
  color: #fff;
}

/* ----------------------------- HERO BLOCK ----------------------------- */
.hero {
  background: var(--mono-bg);
  border-bottom: 1px solid var(--mono-gray-light);
  padding: 50px 0 30px 0;
  min-height: 320px;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 700px;
}

/* CTA Section */
.cta-section {
  background: var(--mono-black);
  color: var(--accent);
  border-radius: 18px;
  margin: 62px 0 0 0;
  box-shadow: 0 6px 22px var(--shadow-strong);
}
.cta-section h2 {
  color: #fff;
}
.cta-section .cta-btn {
  background: #fff;
  color: var(--mono-black);
  margin-top: 12px;
}
.cta-section .cta-btn:hover {
  background: var(--mono-gray-light);
}

/* -------------------------------- BUTTONS ----------------------------------- */
.cta-btn, .btn, button, input[type=submit] {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 24px;
  background: var(--mono-black);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.14s, color 0.15s, transform 0.16s;
  border: none;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
.cta-btn:hover, .btn:hover, button:hover, input[type=submit]:hover {
  background: var(--mono-gray);
  color: #fff;
  transform: translateY(-2px) scale(1.025);
}
.cta-btn:focus, .btn:focus {
  outline: 2px solid var(--mono-gray-dark);
  outline-offset: 2px;
}

/* ---------------------------- CUSTOM LISTS ---------------------------- */
ul, ol {
  margin-left: 0;
  margin-bottom: 0;
}
ul > li, ol > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--mono-gray);
  font-size: 1rem;
}
ul > li:before {
  content: '•';
  color: var(--mono-black);
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.05em;
}
/* nested lists */
ul ul, ol ul, ul ol, ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

/* ---------------------------- CARDS / BLOCKS ------------------------- */
.feature-grid, .feature-list, .city-grid, .team-list {
  gap: 24px;
}

.feature-grid > div, .feature-list > div, .city-grid > div, .team-list > div {
  background: var(--mono-highlight);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 26px 16px;
  min-width: 220px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.feature-grid img, .feature-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.team-list {
  gap: 26px;
}
.team-member {
  background: var(--mono-highlight);
  padding: 22px 16px;
  box-shadow: 0 2px 8px var(--shadow);
  border-radius: 10px;
}

.local-highlights, .unique-features, .highlights {
  background: var(--mono-gray-light);
  border-radius: 8px;
  padding: 20px 20px;
  font-size: 1.01rem;
  margin-top: 18px;
}

/************************ FOOTER *****************************/
footer {
  background: #181818;
  color: #eee;
  font-size: 1rem;
  margin-top: 80px;
}
footer span {
  color: white !important;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav a {
  color: #e3e3e3;
  font-size: 0.99rem;
  padding: 3px 0;
  border-radius: 3px;
  transition: color 0.15s, background 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: rgba(255,255,255,0.05);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  filter: invert(87%);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.footer-brand img {
  height: 28px;
}
.footer-brand span {
  color: #bbbbbb;
  font-size: 1rem;
}

/********************************** CONTACT PAGE *********************************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
}
.map-location {
  margin-top: 14px;
  font-style: italic;
}

/******************************** LEGAL BLOCKS **************************/
.legal {
  background: var(--mono-highlight);
  padding: 30px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 4px var(--shadow);
}
.legal h2, .legal h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

/*************************** THANK YOU PAGE *****************************/
.thank-you-message {
  background: var(--mono-gray-light);
  padding: 30px 22px;
  border-radius: 12px;
}

/************************** RESPONSIVE & MOBILE ADAPTATIONS **************************/
@media (max-width: 1150px) {
  .container {
    max-width: 91vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 900px) {
  .header-container, .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-contact {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 780px) {
  .feature-grid, .feature-list, .city-grid, .team-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .feature-list > div, .city-grid > div, .team-list > div {
    min-width: 0;
    width: 100%;
  }
  .hero .content-wrapper, .content-wrapper {
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 99vw;
  }
  .hero {
    padding: 36px 0 18px 0;
    min-height: unset;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .hero, .section, .cta-section, .content-wrapper, .legal, .thank-you-message {
    padding: 16px 4px;
  }
  .container {
    padding: 0 2px;
  }
  .footer-container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .card {
    padding: 14px 7px;
  }
  .content-grid > *, .city-grid > *, .feature-grid > *, .feature-list > *, .team-list > * {
    padding: 14px 7px;
  }
}

/************************* TRANSITIONS & MICRO-INTERACTIONS *************************/
.button, .cta-btn, .btn, nav a, .card, .testimonial-card, .feature-grid>div, .feature-list>div, .city-grid>div {
  transition: box-shadow 0.18s, background 0.15s, color 0.15s, transform 0.16s;
}
.card:hover, .feature-grid>div:hover, .feature-list>div:hover, .city-grid>div:hover {
  box-shadow: 0 6px 24px var(--shadow-strong);
  transform: translateY(-2px) scale(1.012);
}

/******************************** COOKIE CONSENT BANNER ********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #242424;
  color: #fff;
  padding: 22px 24px;
  box-shadow: 0 -3px 24px rgba(21,21,21,0.18);
  font-size: 1rem;
  gap: 16px;
  animation: slideInBanner 0.5s cubic-bezier(.7,-0.02,.21,1.18);
}
@keyframes slideInBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 24px;
  flex: 1 1 0;
  color: white;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .accept {
  background: #fff;
  color: #151515;
}
.cookie-banner .accept:hover {
  background: #ececec;
}
.cookie-banner .reject {
  background: #222;
  color: #fff;
  border: 1px solid #404040;
}
.cookie-banner .reject:hover {
  background: #181818;
}
.cookie-banner .settings {
  background: transparent;
  color: #bbb;
  border: 1px solid #393939;
}
.cookie-banner .settings:hover {
  background: #202020;
  color: #fff;
}

/*************************** COOKIE PREFERENCES MODAL ****************************/
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.73);
  z-index: 2700;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInModalBG 0.3s;
}
@keyframes fadeInModalBG {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #151515;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -5px 32px rgba(0,0,0,0.18);
  max-width: 480px;
  width: 95vw;
  padding: 36px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
  animation: slideUpModal 0.35s cubic-bezier(.6,0,0,1);
}
@keyframes slideUpModal {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.42rem;
  margin-bottom: 7px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .category input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #222;
  margin-top: 0;
}
.cookie-modal .category label {
  font-weight: 550;
}
.cookie-modal .essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 22px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.cookie-modal .save {
  background: #222;
  color: #fff;
}
.cookie-modal .cancel {
  background: #eaeaea;
  color: #222;
}
.cookie-modal .save:focus, .cookie-modal .save:hover {
  background: #444;
}
.cookie-modal .cancel:focus, .cookie-modal .cancel:hover {
  background: #e0e0e0;
}

/********************************** MISC **********************************/
::-webkit-input-placeholder { color: #7a7a7a; }
::-moz-placeholder { color: #7a7a7a; }
:-ms-input-placeholder { color: #7a7a7a; }
::placeholder { color: #7a7a7a; }

/* ----------------- REMOVE GRID & COLUMN PROPERTIES GLOBALLY ----------------- */
[class*='grid'],
[class*='columns'],
[class*='column'] {
  column-count: initial !important;
  columns: initial !important;
  column-width: initial !important;
  column-gap: initial !important;
  display: flex !important;
}

/* --------------- SELECTIVE Z-INDEX LAYERING FOR OVERLAYS ------------------ */
.mobile-menu { z-index: 2500; }
.cookie-banner { z-index: 2600; }
.cookie-modal-backdrop { z-index: 2700; }

/* ----------- SPACING BETWEEN SECTION, CARDS & BLOCK ELEMENTS ------------- */
section, .section, .card, .testimonial-card, .feature-grid > div, .feature-list > div, .city-grid > div, .team-list > div {
  margin-bottom: 20px;
}

/* --------------- OVERRIDE ABSOLUTE & GRID IF PRESENT (SAFETY) ------------- */
[class*='card'], [class*='grid'], [class*='columns'], [class*='column'] {
  position: static !important;
  display: flex !important;
  flex-direction: column;
}

/* End of CSS */
