/*------------------------------------
  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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #23262F 0%, #737B8B 100%);
  color: #23262F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #23262F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #737B8B;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 2px solid #F2E7D2;
  outline-offset: 2px;
}
strong, b {
  font-weight: 600;
}

/*------------------------------------
  Fonts
------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23262F;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #23262F;
}
blockquote {
  color: #23262F;
  font-size: 1.1rem;
  padding-left: 18px;
  border-left: 4px solid #737B8B;
  font-style: italic;
  margin-bottom: 14px;
}

/*------------------------------------
  Layout Containers
------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(242, 231, 210, 0.08);
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.map-embed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}
.map-embed .caption {
  font-size: 0.95rem;
  color: #737B8B;
}

/*------------------------------------
  Navigation & Header
------------------------------------*/
header {
  width: 100%;
  padding: 20px 0 12px 0;
  background: linear-gradient(90deg, #23262F 80%, #737B8B 120%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 20;
}
header > a img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #F2E7D2;
  padding: 6px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover {
  background: #F2E7D2;
  color: #23262F;
}
header .btn-primary {
  margin-left: 28px;
  flex-shrink: 0;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #F2E7D2;
  margin-left: 18px;
  z-index: 101;
  transition: color 0.2s;
  border-radius: 8px;
  padding: 2px 12px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #23262F;
  background: #F2E7D2;
}

/*------------------------------------
  Mobile Menu
------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 38, 47, 0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  z-index: 200;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #F2E7D2;
  margin: 22px 18px 0 0;
  background: none;
  align-self: flex-end;
  border-radius: 10px;
  padding: 2px 16px 4px 16px;
  transition: color 0.15s, background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #23262F;
  background: #F2E7D2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #F2E7D2;
  padding: 16px 0 14px 0;
  border-bottom: 1px solid rgba(242,231,210,0.16);
  transition: background 0.2s, color 0.2s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #23262F;
  background: #F2E7D2;
}

/*------------------------------------
  Footer
------------------------------------*/
footer {
  width: 100%;
  background: #23262F;
  padding: 32px 0 18px 0;
  color: #F2E7D2;
  margin-top: 48px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #F2E7D2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.19s, color 0.19s;
}
footer nav a:hover {
  background: #F2E7D2;
  color: #23262F;
}
footer p {
  color: #F2E7D2;
  font-size: 0.97rem;
  margin-bottom: 0;
}

/*------------------------------------
  Buttons
------------------------------------*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  background: linear-gradient(90deg, #23262F 65%, #737B8B 100%);
  color: #F2E7D2;
  border-radius: 999px;
  box-shadow: 0 2px 12px 0 rgba(115, 123, 139, 0.14);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.19s, color 0.18s, transform 0.13s;
  border: none;
  text-decoration: none;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #F2E7D2 70%, #737B8B 100%);
  color: #23262F;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px 0 rgba(115, 123, 139, 0.19);
}

/*------------------------------------
  Lists, Cards, Content Blocks
------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F2E7D2;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(115, 123, 139, 0.08);
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: transform 0.17s, box-shadow 0.21s;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 26px 0 rgba(35, 38, 47, 0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.service-list > div {
  background: #F2E7D2;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(115,123,139,0.06);
  padding: 22px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: transform 0.16s, box-shadow 0.21s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list > div:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 20px 0 rgba(35,38,47,0.11);
}
.tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tip-cards > div {
  background: #F2E7D2;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(115,123,139,0.07);
  padding: 18px 18px 18px 18px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.tip-cards > div img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.tip-cards > div:hover {
  box-shadow: 0 7px 16px 0 rgba(35,38,47,0.12);
  transform: translateY(-2px) scale(1.03);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F2E7D2;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23262F;
  box-shadow: 0 2px 8px 0 rgba(115,123,139,0.07);
  min-width: 220px;
}
.value-list img {
  width: 36px;
  height: 36px;
}
.timeline {
  margin: 22px 0 26px 0;
  padding-left: 2px;
}
.timeline h3 {
  font-size: 1.07rem;
  color: #737B8B;
}
.timeline ul {
  margin-top: 10px;
}
.timeline li {
  margin-bottom: 9px;
  color: #23262F;
  font-size: 1.01rem;
}
.founder-message {
  background: #F2E7D2;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(115,123,139,0.05);
  padding: 26px 18px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-style: italic;
  margin-top: 14px;
  color: #23262F;
}
.founder-message span {
  margin-top: 8px;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.category-grid article {
  background: #F2E7D2;
  border-radius: 12px;
  box-shadow: 0 1px 10px 0 rgba(115,123,139,0.06);
  padding: 26px 20px;
  flex: 1 1 280px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.category-grid article:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(35, 38, 47, 0.09);
}
.features-icons {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin: 16px 0 9px 0;
}
.features-icons img {
  width: 44px;
  height: 44px;
}

/*------------------------------------
  Testimonials
------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px 16px 28px;
  background: #fff;
  color: #23262F;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 rgba(115,123,139,0.10);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 560px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.testimonial-card blockquote {
  border-left: 4px solid #23262F;
  color: #23262F;
  font-size: 1rem;
  padding-left: 12px;
  margin: 0;
}
.testimonial-details {
  color: #737B8B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(35,38,47,0.13);
  transform: translateY(-2px) scale(1.03);
}

/*------------------------------------
  Misc Utility / Spacing / Alignment
------------------------------------*/
.section:not(:last-child) {
  margin-bottom: 56px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .value-list, .category-grid, .tip-cards, .features-icons, .service-list {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}

/*------------------------------------
  Cookie Consent Banner & Modal
------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: linear-gradient(90deg, #23262F 85%, #737B8B 110%);
  color: #F2E7D2;
  padding: 22px 20px 22px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  box-shadow: 0 -4px 18px 0 rgba(35, 38, 47, 0.09);
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 180px;
  min-width: 160px;
  margin-right: 10px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner__btn, .cookie-banner__btn-accept, .cookie-banner__btn-reject {
  background: #F2E7D2;
  color: #23262F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.18s;
  margin: 0;
}
.cookie-banner__btn:hover, .cookie-banner__btn-accept:hover {
  background: #23262F;
  color: #F2E7D2;
}
.cookie-banner__btn-reject:hover {
  background: #737B8B;
  color: #F2E7D2;
}
.cookie-banner__btn-settings {
  background: #737B8B;
  color: #F2E7D2;
}
.cookie-banner__btn-settings:hover {
  background: #23262F;
  color: #F2E7D2;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  background: rgba(35,38,47,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.38s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__box {
  background: #fff;
  color: #23262F;
  border-radius: 18px;
  box-shadow: 0 6px 34px 0 rgba(35,38,47,0.18);
  padding: 36px 32px 28px 32px;
  max-width: 90vw;
  width: 410px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  position: relative;
  animation: modalIn 0.33s cubic-bezier(0.6,0,0.2,1);
}
@keyframes modalIn {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  background: none;
  color: #23262F;
  font-size: 2rem;
  border-radius: 10px;
  padding: 2px 14px;
  position: absolute;
  top: 16px;
  right: 12px;
  transition: background 0.15s, color 0.12s;
  z-index: 10;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #F2E7D2;
  color: #737B8B;
}
.cookie-modal__title {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23262F;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__cat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23262F;
  background: #F2E7D2;
  border-radius: 10px;
  padding: 10px 16px;
}
.cookie-modal__cat input[type=checkbox] {
  accent-color: #737B8B;
  width: 20px;
  height: 20px;
}
.cookie-modal__cat input[disabled] {
  opacity: 0.5;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal__actions .cookie-banner__btn {
  padding: 10px 24px;
}

/*------------------------------------
  Responsive Design
------------------------------------*/
@media (max-width: 992px) {
  .container {
    max-width: 92vw;
  }
  .content-grid, .card-container, .service-list, .category-grid, .value-list, .tip-cards, .features-icons {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header {
    flex-direction: row;
    gap: 8px;
  }
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  section, .section {
    padding: 26px 6px;
  }
  .content-grid, .card-container, .service-list, .category-grid, .value-list, .tip-cards, .features-icons {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 8px 14px 14px;
  }
  footer {
    padding: 22px 0 12px 0;
    font-size: 0.98rem;
  }
  .cookie-modal__box {
    width: 99vw;
    max-width: 390px;
    padding: 22px 8px 17px 16px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .btn-primary {
    padding: 11px 12px;
    font-size: 0.98rem;
  }
}
/*------------------------------------
  Custom Scrollbar (Modern, Visible)
------------------------------------*/
body::-webkit-scrollbar {
  width: 12px;
  background: #F2E7D2;
}
body::-webkit-scrollbar-thumb {
  background: #737B8B;
  border-radius: 7px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #23262F;
}

/*------------------------------------
  Microinteractions & Transitions
------------------------------------*/
section, .card, .testimonial-card, .service-list > div, .category-grid article, .tip-cards > div {
  transition: box-shadow 0.19s, transform 0.16s;
}
.btn-primary, .cookie-banner__btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, color 0.14s, transform 0.13s;
}
.category-grid article:hover, .service-list > div:hover, .tip-cards > div:hover, .testimonial-card:hover, .card:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px 0 rgba(35,38,47,0.10);
}

/*------------------------------------
  Miscellaneous
------------------------------------*/
hr {
  border: none;
  height: 1px;
  background: #737B8B;
  margin: 36px 0;
}

/* Accessibility: Always ensure links are visible/focusable and visible contrast on testimionials */
.testimonial-card, .testimonial-card blockquote, .testimonial-details {
  color: #23262F !important;
}

/* Hide elements visually only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
