/* ------------------------------
   CSS RESET & BASE 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #eaeaea 100%);
  color: #263238;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #263238;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #263238;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p, ul, ol, blockquote, address {
  margin-bottom: 16px;
}

ul, ol {
  margin-left: 24px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
blockquote {
  position: relative;
  font-style: italic;
  color: #263238;
  background: #fffbea;
  border-left: 4px solid #FFD600;
  margin: 16px 0;
  padding: 16px 20px 16px 24px;
  border-radius: 10px;
}

/* Typography for accent sections & cta */
.cta h2, .cta a.cta {
  color: #263238;
  letter-spacing: 0.5px;
}

/* ------------------------------
   LAYOUT & CONTAINER
------------------------------ */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  padding-bottom: 60px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(38,50,56,0.06);
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 7px 28px -4px rgba(38,50,56,0.16);
  transform: translateY(-4px) scale(1.025);
}
.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: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(38,50,56,0.11);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 450px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(120deg, #e3edf9 0%, #fff 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 24px 0 rgba(38, 50, 56, 0.03);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero h1 {
  color: #263238;
}

/* FEATURE GRIDS */
.feature-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid>div, .service-cards>div {
  background: #fff;
  border-radius: 16px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 340px;
  padding: 30px 22px 32px 22px;
  box-shadow: 0 6px 18px 0 rgba(38,50,56,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.15s;
}
.feature-grid>div:hover, .service-cards>div:hover {
  box-shadow: 0 12px 38px -8px rgba(38,50,56,0.15);
  transform: translateY(-3px) scale(1.018);
}
.feature-grid img, .service-cards img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.service-cards>div div {
  font-size: 1.1rem;
  font-weight: bold;
  color: #263238;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(115deg, #fffbea 60%, #fff 98%);
  border-radius: 36px;
  padding-top: 46px;
  padding-bottom: 46px;
  margin-bottom: 60px;
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #263238;
}

/* CTA */
.section.cta, section.cta {
  background: linear-gradient(100deg, #FFD600 70%, #fffbea 100%);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(38,50,56,0.071);
  margin-bottom: 40px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.cta .content-wrapper, section.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}

/* CARDS & INFOS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.prices-overview, .workflow-diagram, .infographics {
  background: #f6f7fa;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 18px 0;
}
.quick-tips, .quick-guides, .map-embed, .inspiration-quotes {
  background: #fefdda;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 14px 0;
}
.inspiration-quotes blockquote {
  background: none;
  border: none;
  color: #263238;
  margin: 0;
  padding: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info div {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  gap: 8px;
}
.contact-info a {
  color: #263238;
  text-decoration: underline;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: row;
  justify-content: flex-start;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 13px;
  padding: 22px 18px 18px 22px;
  box-shadow: 0 2px 10px 0 rgba(38,50,56,0.06);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.17s, transform 0.11s;
}
.faq-accordion > div:hover {
  box-shadow: 0 8px 28px -4px rgba(38,50,56,0.14);
  transform: translateY(-2px) scale(1.012);
}

/* MAP */
.map-embed p {
  font-weight: bold;
  color: #263238;
}

/* ------------------------------
   BUTTONS & CTAS
------------------------------ */
.cta, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1px;
  font-size: 1.1rem;
  padding: 14px 34px;
  margin: 4px 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 16px -4px rgba(38,50,56,0.07);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.13s;
}
.cta.primary {
  background: linear-gradient(90deg, #FFD600 60%, #ffe65c 100%);
  color: #263238;
  border: 2px solid #FFD600;
}
.cta.primary:hover, .cta.primary:focus {
  background: #fffbea;
  color: #263238;
  box-shadow: 0 5px 20px -4px rgba(38,50,56,0.13);
  transform: translateY(-1px) scale(1.035);
}
.cta.secondary {
  background: #263238;
  color: #FFD600;
  border: 2px solid #263238;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #37474f;
  color: #FFD600;
  transform: translateY(-1px) scale(1.035);
  box-shadow: 0 5px 20px -4px rgba(38,50,56,0.14);
}

button, .cta {
  outline: none;
}
button:focus {
  outline: 2px solid #FFD600;
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0 0;
  min-height: 72px;
  box-shadow: 0 1px 10px 0 rgba(38,50,56,0.07);
}
.logo img {
  height: 45px;
  width: auto;
  margin-left: 20px;
}
.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}
.desktop-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #263238;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #fffbea;
  color: #FFD600;
}

header .cta.primary {
  margin-right: 30px;
}

/* Hamburger (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #263238;
  font-size: 2rem;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  margin-right: 18px;
  border-radius: 7px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus{
  background: #ffe65c;
  color: #263238;
}

/* Burger and mobile nav overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,50,56,0.94);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.52,.95,.25,1);
  box-shadow: -3px 0 14px 0 rgba(38,50,56,0.16);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #FFD600;
  border: none;
  padding: 22px 24px 6px 0px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.16s, background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #FFD600;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 34px 0 36px;
}
.mobile-nav a {
  color: #FFD600;
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,214,0, 0.18);
  transition: background 0.18s, color 0.18s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #ffaa0010;
  outline: none;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width:900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: #263238;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 24px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(38,50,56,0.08);
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #FFD600;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer address {
  font-style: normal;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
footer address a {
  color: #FFD600;
}
footer .copyright {
  color: #BDBDBD;
  font-size: 0.97rem;
  margin-top: 10px;
}

/* ------------------------------
   COOKIE CONSENT BANNER
------------------------------ */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFF9E8 85%, #FFD600 100%);
  color: #263238;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  box-shadow: 0 -2px 18px -6px rgba(38,50,56,0.12);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: cookieIn 0.48s cubic-bezier(.38,1.8,.5,1.05);
  gap: 18px;
}
@keyframes cookieIn {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
#cookie-banner p {
  margin: 0;
  font-size: 1rem;
}
#cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
#cookie-banner button, #cookie-banner .cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 999px;
  padding: 10px 24px;
  border: none;
  margin-left: 0px;
  box-shadow: 0 2px 12px -4px rgba(38,50,56,0.07);
  transition: background 0.18s, color 0.12s, box-shadow 0.12s, transform 0.11s;
  cursor: pointer;
}
#cookie-banner .accept {
  background: #FFD600;
  color: #263238;
  font-weight: 600;
  border: 2px solid #FFD600;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: #fffbea;
  color: #263238;
}
#cookie-banner .reject {
  background: #263238;
  color: #FFD600;
  font-weight: 600;
  border: 2px solid #263238;
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: #37474f;
}
#cookie-banner .settings {
  background: #fff;
  color: #263238;
  border: 2px solid #BDBDBD;
  font-weight: 600;
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: #eaeaea;
}

/* Cookie modal overlay */
#cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,50,56,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
#cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal {
  background: #fff;
  color: #263238;
  border-radius: 22px;
  padding: 38px 32px 28px 32px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 8px 34px 0 rgba(38,50,56,0.16);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.49s cubic-bezier(.28,2,.5,1.05);
}
@keyframes modalIn {
  from { transform: scale(0.84) translateY(80px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
#cookie-modal h2 {
  font-size: 1.44rem;
  color: #263238;
  margin-bottom: 14px;
}
#cookie-modal .cookie-cat {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 7px;
}
#cookie-modal .cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
}
#cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
#cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #BDBDBD;
  border-radius: 16px;
  transition: background 0.2s;
}
#cookie-modal .switch input:checked + .slider {
  background-color: #FFD600;
}
#cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 17px; width: 17px;
  left: 3px; bottom: 2.5px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
#cookie-modal .switch input:checked + .slider:before {
  transform: translateX(14px);
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}
#cookie-modal .close-modal {
  background: #fff;
  color: #263238;
  border: 2px solid #BDBDBD;
  border-radius: 999px;
  padding: 9px 22px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: background 0.16s, color 0.12s, box-shadow 0.13s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: #eaeaea;
}
#cookie-modal .accept {
  background: #FFD600;
  color: #263238;
  border: 2px solid #FFD600;
}
#cookie-modal .accept:hover, #cookie-modal .accept:focus {
  background: #fffbea;
  color: #263238;
}

/* ------------------------------
   RESPONSIVE & MOBILE ADJUSTMENTS
------------------------------ */
@media (max-width: 1080px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  section, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 36px;
    border-radius: 0 0 22px 22px;
  }
  .feature-grid, .service-cards, .content-grid, .faq-accordion, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .prices-overview, .quick-tips, .workflow-diagram, .map-embed, .infographics {
    padding: 13px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .contact-info, .footer-nav {
    gap: 12px;
  }
  footer {
    border-radius: 10px 10px 0 0;
    padding-top: 24px;
    padding-bottom: 14px;
  }
  #cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
    font-size: 0.98rem;
    text-align: left;
  }
  #cookie-modal {
    min-width: unset;
    padding: 18px 8px 18px 12px;
  }
}
@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.22rem;
  }
  .logo img {
    height: 35px;
  }
}

/* Utility clear */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ------------------------------
   MISC VISUALS
------------------------------ */

hr {
  border: none;
  border-bottom: 1.5px solid #eee;
  margin: 24px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
}
thead {
  background: #ffe65c;
  color: #263238;
}
th, td {
  padding: 12px;
  text-align: left;
}
tbody tr:nth-child(even) {
  background: #fffbea;
}
tbody tr:nth-child(odd) {
  background: #fff;
}

/* ICONS */
img[src*="/icons/"] {
  width: 1.5em;
  height: 1.5em;
  margin-right: 7px;
  vertical-align: middle;
}

/* HIDE OUTLINE ON MOUSE ONLY */
*:focus:not(:focus-visible) {
  outline: none;
}

/* ------------------------------
   ACCESSIBILITY: VISIBLE FOCUS
------------------------------ */
*:focus-visible {
  outline: 2px solid #FFD600;
  outline-offset: 3px;
  z-index: 22;
}

/* END CSS */