/* --- 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f3f6f9;
  color: #1d2937;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #34526f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #203852;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
}
b, strong {
  font-weight: 700;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203852;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; margin-bottom: 24px; line-height: 1.17; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }

p, ul, ol, li, .text-section, .content-wrapper {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #1d2937;
  line-height: 1.7;
}


/* --- LAYOUT BASICS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section, .section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 32px 0 rgba(52, 82, 111, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 992px) {
  .container { max-width: 920px; }
  h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .container { max-width: 100%; padding: 0 8px; }
  section, .section { padding: 28px 6px; margin-bottom: 36px; }
  .content-wrapper { gap: 16px; }
}

/* --- HEADER --- */
header {
  background: #34526f;
  color: #fff;
  box-shadow: 0 2px 12px rgba(32, 56, 82, 0.07);
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
}

/* --- HEADER NAV --- */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #f3f6f9;
  color: #34526f;
}
.main-nav .cta-btn {
  background: #7db9d6;
  color: #203852;
  font-weight: 700;
  border-radius: 24px;
  padding: 8px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 rgba(52, 82, 111, 0.08);
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border 0.25s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #34526f;
  color: #fff;
  border-color: #7db9d6;
}

/* --- MOBILE MENU TOGGLE BUTTON --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  border: none;
  margin-left: auto;
  transition: color 0.18s;
  z-index: 1102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #7db9d6;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 0;
  }
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f3f6f9;
  box-shadow: 0 0 80px rgba(32,56,82,0.18);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.61,.01,.59,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.33s cubic-bezier(.41,.8,.3,1.12), opacity .19s;
}
.mobile-menu-close {
  margin: 22px 0 12px 26px;
  font-size: 2rem;
  background: none;
  color: #34526f;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-left: 34px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  color: #203852;
  padding: 7px 16px;
  border-radius: 6px;
  transition: background 0.18s, color 0.19s;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7db9d6;
  color: #fff;
}

@media (max-width: 600px) {
  .mobile-menu-close {
    margin: 16px 0 8px 12px;
    font-size: 1.6rem;
  }
  .mobile-nav { gap: 14px; margin-left: 14px; }
  .mobile-nav a { min-width: 128px; font-size: 1rem; }
}


/* --- HERO --- */
.hero {
  background: linear-gradient(90deg, #f3f6f9 70%, #e7ecf3 100%);
  box-shadow: 0 6px 38px -9px rgba(32,56,82,0.10);
  border-radius: 18px;
  margin-bottom: 58px;
  display: flex;
  align-items: center;
}
.hero .container { flex-direction: column; }
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 12px 0;
}
.hero h1 {
  color: #34526f;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #42607a;
  max-width: 650px;
}
.hero .cta-btn {
  font-size: 1.12rem;
}
@media (max-width: 700px) {
  .hero h1 { font-size: 1.5rem; }
  .hero p { font-size: 1rem; }
}

/* --- BUTTONS --- */
.cta-btn {
  background: #34526f;
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(52,82,111,0.06);
  margin-top: 12px;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7db9d6;
  color: #203852;
  box-shadow: 0 6px 18px 0 rgba(52,82,111,.17);
}

/* --- STRUCTURED FLEX LAYOUTS & CARDS --- */
.feature-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid > div, .tips-grid > ul, .tips-grid h3 {
  flex: 1 1 170px;
  background: #f3f6f9;
  border-radius: 12px;
  box-shadow: 0 3px 15px 0 rgba(52,82,111, .05);
  padding: 18px 14px 16px 14px;
  margin-bottom: 12px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.tips-grid {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 900px) {
  .feature-grid, .tips-grid { flex-direction: column; gap: 14px; }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px 0 rgba(52,82,111,0.06);
  padding: 22px 18px;
  min-width: 190px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 10px 36px -5px #7db9d640;
  transform: translateY(-1px) scale(1.012);
}
.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;
  margin-bottom: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 27px 18px 27px;
  background: #f3f6f9;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  color: #1d2937;
  box-shadow: 0 2px 20px 0 rgba(52,82,111,.05);
  min-width: 210px;
}
.testimonial-card p {
  color: #203852;
  font-size: 1.07rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #34526f;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* --- CARDS / REVIEW SLIDERS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.brand-trust, .brand-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #34526f;
  font-weight: 600;
  margin-top: 9px;
}
.brand-badges img, .brand-trust img {
  height: 28px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #eaf2fa;
  padding: 12px 16px;
  border-radius: 11px;
}

@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- LISTS & FEATURES --- */
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1rem;
}
ul li span {
  color: #7db9d6;
  font-weight: 700;
  margin-left: 5px;
}

/* --- SPECIAL SECTIONS --- */
.newsletter-subscribe h3, .newsletter-subscribe p {
  color: #34526f;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.newsletter-subscribe h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.newsletter-subscribe p {
  font-size: 0.98rem;
}
.summary {
  background: #eaf2fa;
  color: #203852;
  border-radius: 10px;
  padding: 12px 15px;
  margin-top: 15px;
  font-size: 1.09rem;
  font-weight: 600;
}
.featured-articles, .blog-categories, .design-trends, .map-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #f3f6f9;
  border-radius: 9px;
  font-size: 1rem;
  color: #34526f;
  margin: 10px 0 0 0;
}

.opening-hours,
.contact-details {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.map-info img {
  height: 24px;
  margin-right: 5px;
}

blockquote {
  margin: 24px 0;
  padding: 17px 30px 17px 18px;
  background: #eaf2fa;
  border-left: 6px solid #34526f;
  font-style: italic;
  font-size: 1.15rem;
  border-radius: 9px;
  color: #1d2937;
}

/* --- FOOTER --- */
footer {
  background: #34526f;
  color: #fff;
  box-shadow: 0 0 14px #34526f0D;
  margin-top: 38px;
  padding: 0;
  width: 100%;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 28px;
  align-items: start;
  justify-content: space-between;
  padding: 18px 0 6px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #d1dee6;
  font-size: .98rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7db9d6;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 210px;
}
.contact-info b { color: #fff; }
.contact-info a {
  color: #7db9d6;
  word-break: break-all;
  font-size: 1rem;
}
footer img {
  height: 19px;
  vertical-align: middle;
  margin-right: 6px;
}
.newsletter-subscribe {
  flex: 1;
  max-width: 280px;
  background: #203852;
  border-radius: 14px;
  padding: 18px 15px 8px 19px;
  min-width: 180px;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .newsletter-subscribe {
    max-width: 100%;
    min-width: 160px;
  }
}
@media (max-width: 600px) {
  .footer-nav { flex-direction: row; gap: 10px; flex-wrap: wrap; }
}

/* --- FORMS & INPUTS (generic) --- */
input:not([type=checkbox]):not([type=radio]),
select, textarea {
  display: block;
  width: 100%;
  background: #f3f6f9;
  border: 1px solid #7db9d6;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  box-sizing: border-box;
  color: #203852;
  transition: border 0.16s, box-shadow 0.21s;
}
input:focus, textarea:focus, select:focus {
  border-color: #34526f;
  box-shadow: 0 0 4px #7db9d6cc;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #203852;
  border-top: 2px solid #7db9d6;
  box-shadow: 0 -2px 38px 0 rgba(32,56,82,.05);
  padding: 18px 30px 22px 24px;
  z-index: 2100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  transition: transform 0.28s, opacity 0.18s;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 8px 18px 10px; }
}
.cookie-banner__text {
  font-size: 0.97rem;
  line-height: 1.5;
  max-width: 580px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__actions button {
  background: #7db9d6;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 7px 22px;
  margin-left: 0px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 2px 10px 0 rgba(52,82,111,0.08);
}
.cookie-banner__actions button.accept {
  background: #34526f;
  color: #fff;
}
.cookie-banner__actions button.reject {
  background: #fff;
  color: #34526f;
  border: 2px solid #7db9d6;
}
.cookie-banner__actions button.accept:hover,
.cookie-banner__actions button.accept:focus {
  background: #7db9d6;
  color: #203852;
}
.cookie-banner__actions button.reject:hover,
.cookie-banner__actions button.reject:focus {
  background: #e2eef4;
  color: #203852;
}
.cookie-banner__actions button.settings {
  background: none;
  box-shadow: none;
  color: #34526f;
  border: none;
  text-decoration: underline;
  padding: 7px 14px;
}
.cookie-banner__actions button.settings:hover,
.cookie-banner__actions button.settings:focus {
  color: #7db9d6;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(52,82,111,.18);
  z-index: 2200;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 36px 48px 24px 38px;
  box-shadow: 0 8px 80px rgba(32,56,82,.15);
  min-width: 290px;
  max-width: 96vw;
  color: #203852;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: popup-dropin 0.33s cubic-bezier(.33,1.4,.30,1.2);
}
@media (max-width: 600px) {
  .cookie-modal { padding: 20px 10px; min-width: unset; }
}
@keyframes popup-dropin {
  from { transform: translateY(40px) scale(.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #34526f;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: #1d2937;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  accent-color: #7db9d6;
  width: 20px;
  height: 20px;
}
.cookie-category .always-on {
  font-style: italic;
  color: #7db9d6;
  font-size: 0.96rem;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
}
.cookie-modal__actions button {
  background: #34526f;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 8px 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(52,82,111,0.07);
  transition: background 0.18s, color 0.15s;
}
.cookie-modal__actions button.secondary {
  background: #fff;
  color: #34526f;
  border: 2px solid #7db9d6;
}
.cookie-modal__actions button.secondary:hover,
.cookie-modal__actions button.secondary:focus {
  background: #eaf2fa;
  color: #203852;
}
.cookie-modal__actions button:hover,
.cookie-modal__actions button:focus {
  background: #7db9d6;
  color: #203852;
}
.cookie-modal__close {
  position: absolute;
  right: 22px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #34526f;
  cursor: pointer;
}

/* Responsive for cookie modal buttons */
@media (max-width: 420px) {
  .cookie-modal__actions { flex-direction: column; gap: 8px; }
  .cookie-modal { min-width: 0 !important; }
}

/* --- MISC --- */
::-webkit-scrollbar { width: 8px; background: #eaf2fa; }
::-webkit-scrollbar-thumb { background: #b0c7db; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #7db9d6; }

/* --- Transitions & Interactions --- */
a, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a, .cookie-banner__actions button, .cookie-modal__actions button {
  transition: color .19s, background .19s, box-shadow .18s, border .18s, text-decoration .16s;
}
.card, .feature-grid > div, .testimonial-card, .newsletter-subscribe {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .newsletter-subscribe:hover {
  box-shadow: 0 8px 32px 0 rgba(52,82,111,0.08);
  transform: translateY(-1px) scale(1.01);
}

/* --- Utility classes to ensure content doesn't overlap and proper spacing --- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-12 { margin-top: 12px !important; }
.mb-12 { margin-bottom: 12px !important; }

/* --- Accessibility: focus --- */
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #7db9d6;
  outline-offset: 2px;
}

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