/* 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-color: #F6F4EE;
  color: #15425A;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}
a {
  color: #185874;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #ED9308;
  outline: none;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #15425A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { margin-bottom: 10px; }
p, li {
  font-size: 1rem;
}

/* STRUCTURE & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #185874 0, #15425A 100%);
  color: #fff;
  padding: 0;
  position: relative;
  box-shadow: 0 2px 10px 0 rgba(24, 88, 116, 0.06);
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  flex-wrap: wrap;
}
header a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
header a:hover, header a:focus {
  color: #ED9308;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta-btn {
  background: linear-gradient(90deg, #ED9308 0, #FFD38A 100%);
  color: #15425A;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 32px;
  padding: 10px 34px;
  margin-left: 20px;
  box-shadow: 0 4px 16px 0 rgba(237, 147, 8, 0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.13s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD38A 0, #ED9308 100%);
  color: #185874;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  display: none;
  z-index: 1200;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .main-nav {
    gap: 10px;
  }
  .cta-btn { margin-left: 0; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-right: 14px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 12px 10px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,88,116, 0.97);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.82,.01,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 18px 26px 10px 0;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #ED9308;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  margin-left: 32px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 8px 0;
  transition: color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #ED9308;
  background: none;
}
@media (max-width: 480px) {
  .mobile-nav { margin-left: 16px; }
  .mobile-menu-close { margin-right: 10px; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(99deg, #F6F4EE 0, #ED9308 6%, #F6F4EE 80%);
  padding: 60px 0 36px 0;
  margin-bottom: 60px;
  position: relative;
  min-height: 260px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  max-width: 740px;
  gap: 18px;
}
.hero h1 {
  color: #15425A;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.hero .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  color: #185874;
  margin-bottom: 16px;
  margin-top: 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 22px 0;
    min-height: 170px;
    margin-bottom: 35px;
  }
  .hero h1 { font-size: 1.55rem; }
  .hero .subheadline { font-size: 1.07rem; }
}

/* GENERIC SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(24,88,116,0.04);
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 24px 8px;
    border-radius: 15px;
  }
}

.features .content-wrapper,
.services .content-wrapper,
.about .content-wrapper {
  gap: 28px;
}

/* FLEXBOX LAYOUTS & GAPS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.feature-grid,
.tip-grid,
.faq-grid,
.opening-hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(24,88,116,0.06);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F4EE;
  color: #15425A;
  box-shadow: 0 2px 14px 0 rgba(24,88,116,0.09);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 900px) {
  .feature-grid, .tip-grid, .faq-grid {
    gap: 18px;
    flex-direction: column;
  }
  .openings-hours-grid { gap: 12px; }
}
@media (max-width: 768px) {
  .feature-grid, .tip-grid, .faq-grid, .openings-hours-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* FEATURE BOXES */
.feature-box, .tip-grid > div, .faq-grid > div {
  background: #F6F4EE;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(24, 88, 116, 0.06);
  padding: 26px 20px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 340px;
  text-align: left;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-box img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
.feature-box:hover, .tip-grid > div:hover, .faq-grid > div:hover {
  box-shadow: 0 8px 28px rgba(24, 88, 116, 0.14);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 568px) {
  .feature-box, .faq-grid > div, .tip-grid > div {
    min-width: 0;
    padding: 18px 10px;
  }
}

/* TESTIMONIALS */
.testimonials .testimonial-card {
  background: #F6F4EE;
  color: #15425A;
  border-left: 7px solid #ED9308;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px 0 rgba(24,88,116,0.09);
}
.testimonial-author {
  margin-left: 18px;
  font-style: italic;
  font-weight: 500;
  color: #185874;
}

/* CTA BLOCK */
.cta {
  background: linear-gradient(92deg, #ED9308 10%, #FFD38A 100%);
  color: #15425A;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(237, 147, 8, 0.09);
}
.cta .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta h2 {
  color: #15425A;
  margin-bottom: 6px;
}

/* SERVICES LISTS */
.services ul, .services ol, .about ul, .features ul, .features ol, .infoboxes ul, .education-steps ol {
  margin-bottom: 18px;
  margin-top: 0;
  padding-left: 22px;
}
.services ul li,
.services ol li,
.about ul li,
.features ul li,
.features ol li {
  margin-bottom: 10px;
}
.service-price-teaser {
  color: #ED9308;
  font-weight: 600;
}

/* QUOTE/INFO PREVIEW SECTIONS */
.tip-highlights, .quick-wins, .longterm-savings, .infoboxes, .education-steps, .planning-tools-teaser {
  background: #fff8ea;
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  margin: 16px 0 0 0;
  box-shadow: 0 1px 6px 0 rgba(237,147,8,0.05);
}
.tip-highlights h3, .quick-wins h3, .longterm-savings h3, .infoboxes h3, .education-steps h3, .planning-tools-teaser h3 {
  color: #ED9308;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}

/* CONTACT/LEGAL/CONFIRMATION */
.contact-details {
  margin-bottom: 16px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.map-embed img {
  width: 44px;
  height: 44px;
}
.opening-hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.opening-hours-grid > div {
  background: #F6F4EE;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 1rem;
  color: #185874;
}
@media (max-width: 700px) {
  .openning-hours-grid, .openning-hours-grid > div {
    flex-direction: column;
    width: 100%;
  }
  .map-embed {
    flex-direction: column;
    gap: 8px;
  }
}

.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 10px 0 rgba(24,88,116,0.07);
  font-size: 1rem;
  padding: 38px 18px;
}
@media (max-width: 600px) {
  .legal {
    padding: 22px 4px;
    border-radius: 10px;
  }
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #15425A 10%, #185874 90%);
  color: #fff;
  padding: 36px 0 12px 0;
  margin-top: 80px;
  box-shadow: 0 -2px 10px 0 rgba(24,88,116,0.06);
  border-radius: 24px 24px 0 0;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, footer a:focus {
  color: #ED9308;
}
.footer-logo img {
  width: 60px;
  margin-bottom: 8px;
}
.footer-contact p, .footer-contact a { 
  color: #fff;
  font-size: 0.93rem;
}
.footer-contact a { text-decoration: underline; }
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo img { margin-top: 12px; }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #15425A;
  color: #fff;
  padding: 16px 26px 16px 18px;
  box-shadow: 0 -1px 18px 0 rgba(24,88,116,0.17);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(.68,.05,.3,1);
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  border: none;
  border-radius: 23px;
  background: #ED9308;
  color: #15425A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 20px;
  margin-left: 4px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(237,147,8,0.06);
  transition: background 0.18s, color 0.16s;
}
.cookie-btn.secondary {
  background: #F6F4EE;
  color: #15425A;
  border: 1px solid #ED9308;
}
.cookie-btn.settings {
  background: #fff;
  color: #ED9308;
  border: 1px solid #ED9308;
  font-weight: 500;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD38A;
  color: #185874;
}
@media (max-width:480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 6px;
    font-size: 0.97rem;
  }
  .cookie-banner__buttons { gap: 8px; }
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24, 88, 116, 0.40);
  z-index: 3980;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #15425A;
  border-radius: 21px;
  box-shadow: 0 2px 32px 0 rgba(24,88,116,0.16);
  min-width: 335px;
  max-width: 95vw;
  padding: 38px 24px 22px 28px;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 13px;
  background: none;
  border: none;
  color: #15425A;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #ED9308;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'],
.cookie-category input[type='radio'] {
  accent-color: #ED9308;
  width: 19px; height: 19px;
}
.cookie-category.essential {
  opacity: 0.62;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
@media (max-width:520px) {
  .cookie-modal {
    padding: 28px 10px 14px 10px;
    min-width: 0;
  }
}

/* FORM ELEMENTS (for possible future) */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  border-radius: 7px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #ED9308;
  box-shadow: 0 0 0 1.5px #ED9308;
}

/* UTILS */
.bg-gradient-primary {
  background: linear-gradient(90deg,#185874 0,#15425A 100%);
  color: #fff;
}
.text-accent {
  color: #ED9308;
}
.rounded {
  border-radius: 18px;
}
.box-shadow {
  box-shadow: 0 2px 18px 0 rgba(24,88,116,0.14);
}

/* MICRO-INTERACTIONS */
.button, .cta-btn, .cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.18s, transform 0.14s;
}
.card, .feature-box, .tip-grid > div, .faq-grid > div {
  transition: box-shadow 0.19s, transform 0.14s;
}
.card:hover, .feature-box:hover, .tip-grid > div:hover, .faq-grid > div:hover {
  box-shadow: 0 10px 38px 0 rgba(24,88,116,0.16);
  transform: translateY(-6px) scale(1.03);
}

/* TYPOGRAPHY SCALE (desktop) */
@media (min-width:1025px) {
  body { font-size: 17px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.32rem; }
}
@media (max-width:700px) {
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1.01rem; }
}
