/* ==== CSS RESET & BASE ==== */
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,main,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;
}
/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
body {
  line-height:1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FDF8F4;
  color: #234B6D;
  min-height: 100vh;
  transition: background .3s;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ==== VARIABLES ==== */
:root {
  --color-primary: #234B6D;            /* navy blue - trust */
  --color-secondary: #79B1D4;          /* warm blue - friendly accent */
  --color-accent: #F4F7F9;             /* background accent */
  --color-warm-bg: #FFEEDB;           /* warm beige/soft peach */
  --color-warm-cta: #FFB86C;           /* warm orange, for CTA */
  --color-success: #37B77B;
  --color-error: #D45734;
  --color-text: #234B6D;
  --color-heading: #1A3551;
  --color-shadow: rgba(246, 175, 117, 0.11);
  --color-testimonial-bg: #FAF7F2;
  --color-link: #CC7B1E;

  --border-radius-large: 20px;
  --border-radius: 12px;
  --border-radius-small: 8px;

  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==== SPACING PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 28px 20px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255, 184, 108, 0.13);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-testimonial-bg);
  box-shadow: 0 3px 18px rgba(255,184,108,0.08);
  border-radius: var(--border-radius-large);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(255,184,108,0.15);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Extra: For banded lists like .feature-grid & .service-list */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li, .service-list > div {
  flex: 1 1 210px;
  background: #FFF;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 24px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.feature-grid li:hover, .service-list > div:hover {
  box-shadow: 0 8px 32px rgba(255, 184, 108, 0.13);
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-top: 8px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}
p, ul, ol, li, .text-section, .footer-contact, .customer-support-highlight {
  font-size: 1.1rem;
  color: var(--color-text);
  font-family: var(--font-body);
  margin-bottom: 12px;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
  padding-left: 0;
}
li {
  margin-bottom: 10px;
}
a {
  color: var(--color-link);
  text-decoration: underline;
  cursor: pointer;
  transition: color .18s;
}
a:hover, a:focus {
  color: #b86815;
  text-decoration: none;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: #fff6ef;
  border-bottom: 2px solid #ffe1c8;
  box-shadow: 0 1px 16px rgba(255,184,108,0.035);
  margin-bottom: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 76px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 0;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: var(--border-radius-small);
  transition: background-color 0.15s, color 0.15s;
  text-decoration: none;
}
nav a:hover, nav a:focus {
  background: #FFEEDB;
  color: #b86815;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FFD09E 0%, #FFB86C 100%);
  color: #234B6D;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  padding: 14px 28px;
  box-shadow: 0 2px 16px rgba(255,184,108,0.12);
  transition: background 0.17s, color 0.17s, box-shadow .2s;
  text-decoration: none;
  margin-left: 12px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFB86C 0%, #FFD09E 100%);
  color: #b86815;
  box-shadow: 0 10px 32px rgba(255, 184, 108, 0.17);
}

/* Hamburger button setup */
.mobile-menu-toggle {
  display: none;
  background: #FFD09E;
  border: none;
  color: #234B6D;
  font-size: 2.1rem;
  border-radius: var(--border-radius);
  padding: 6px 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,184,108,0.10);
  transition: background 0.13s, color .13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFB86C;
  color: #b86815;
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 238, 219, 0.97);
  z-index: 1003;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(0.76,0,0.24,1);
  box-shadow: 2px 0 16px rgba(255,184,108,0.17);
  padding: 42px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #CC7B1E;
  font-size: 2.1rem;
  position: absolute;
  top: 20px;
  right: 26px;
  cursor: pointer;
  z-index: 10;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.mobile-nav a {
  font-size: 1.26rem;
  font-family: var(--font-display);
  color: #234B6D;
  text-decoration: none;
  padding: 14px 0;
  width: 100vw;
  text-align: center;
  border-radius: 0;
  background: none;
  transition: background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEEDB;
  color: #b86815;
}

/* ==== HERO & CTA BANNER ==== */
.hero {
  background: linear-gradient(120deg, #fff6ef 64%, #ffe1c8 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 3px 32px rgba(255,184,108,0.06);
  padding-top: 40px;
  padding-bottom: 44px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.cta-banner {
  background: linear-gradient(120deg, #FFB86C 13%, #FFD09E 100%);
  border-radius: var(--border-radius-large);
  box-shadow: 0 3px 24px rgba(255,184,108,0.08);
  margin-bottom: 48px;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}
.cta-banner h2, .cta-banner p {
  color: #234B6D;
}
.cta-banner .cta-btn {
  margin-top: 12px;
  background: #fff;
  color: #CC7B1E;
}
.cta-banner .cta-btn:hover {
  color: #fff;
  background: #FFB86C;
}

/* ==== MAIN LAYOUT ==== */
main {
  min-height: 500px;
  flex: 1 0 auto;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.text-section {
  background: none;
  border-radius: var(--border-radius);
  padding: 0;
  font-size: 1.11rem;
}
.text-section ul {
  margin-top: 12px;
  padding-left: 16px;
}

/* ==== SERVICE OVERVIEW & PRICES ==== */
.service-overview, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-overview > div, .service-list > div {
  background: #fff;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 22px 20px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.service-overview strong, .service-list strong {
  color: var(--color-heading);
  font-size: 1.09em;
}
.service-overview span, .service-list .service-price {
  background: #FFB86C;
  color: #234B6D;
  font-weight: 600;
  border-radius: var(--border-radius-small);
  font-size: 1.02em;
  padding: 3px 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* ==== STEP BY STEP TIMELINE ==== */
.step-by-step-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 0;
  padding-left: 0;
  counter-reset: steps;
}
.step-by-step-timeline li {
  background: #FFF;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 20px 24px 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.10rem;
  position: relative;
}
.step-by-step-timeline li img {
  width: 38px;
  height: 38px;
  margin-right: 14px;
}

/* ==== ACCORDION FAQ ==== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 10px rgba(246, 175, 117, 0.05);
  padding: 24px 20px 14px 20px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: box-shadow 0.19s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 20px rgba(255,184,108,0.09);
}

.faq-accordion h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 1.13rem;
  font-family: var(--font-display);
}
.faq-accordion .text-section {
  padding: 6px 0 0 0;
  font-size: 1rem;
}

/* ==== MAP PLACEHOLDER ==== */
.map-placeholder {
  background: #fffbe9;
  border: 2px dashed #FFB86C;
  border-radius: var(--border-radius-large);
  box-shadow: 0 2px 12px rgba(255,184,108,0.07);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 24px;
  margin-top: 10px;
}
.map-placeholder img {
  width: 44px;
  height: 44px;
}
.map-placeholder p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--color-primary);
  margin: 0;
}

/* ==== FOOTER ==== */
footer {
  background: #fff6ef;
  border-top: 2px solid #ffe1c8;
  box-shadow: 0 -2px 14px rgba(255,184,108,0.04);
  padding: 36px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
footer .logo img {
  height: 34px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #234B6D;
  font-size: 1rem;
  text-decoration: none;
  padding: 4px 0;
}
.footer-contact {
  font-size: 0.99rem;
  color: #92651d;
  margin-top: 12px;
}

/* ==== CUSTOMER SUPPORT HIGHLIGHT ==== */
.customer-support-highlight {
  background: #FFF1E2;
  border-radius: var(--border-radius-large);
  color: #234B6D;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(255,184,108,0.04);
  margin-top: 18px;
  font-weight: 500;
}

/* ==== USP LIST ==== */
.usp-list ul {
  display: flex;
  flex-direction: column;
  gap:8px;
  margin-left: 16px;
}
.usp-list li {
  font-size: 1.07rem;
  color: #234B6D;
  font-weight: 500;
}

/* ==== THANK YOU PAGE ==== */
.thank-you-message {
  background: #fff;
  border-radius: var(--border-radius-large);
  box-shadow: 0 3px 20px var(--color-shadow);
  padding: 32px 26px;
  text-align: center;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fffbe9;
  color: #234B6D;
  box-shadow: 0 -2px 38px rgba(255,184,108,.13);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  padding: 20px 18px 18px 18px;
  gap: 16px;
  animation: cookie-slideup 0.4s ease;
  font-size: 1.04rem;
}
@keyframes cookie-slideup {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #234B6D;
  margin: 0 12px 0 0;
  flex: 3 1 200px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  flex: 1 1 120px;
}
.cookie-btn {
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,184,108,0.09);
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.primary {
  background: #FFB86C;
  color: #234B6D;
}
.cookie-btn.primary:hover {
  background: #FFD09E;
  color: #b86815;
}
.cookie-btn.secondary {
  background: #fff;
  color: #CC7B1E;
  border: 1px solid #FFB86C;
}
.cookie-btn.secondary:hover {
  background: #FFEEDB;
  color: #b86815;
}
.cookie-btn.settings {
  background: #FFEEDB;
  color: #234B6D;
}
.cookie-btn.settings:hover {
  background: #FFB86C;
  color: #fff;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2005;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,75,109,0.26);
  align-items: center;
  justify-content: center;
  transition: background 0.24s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe9;
  border-radius: var(--border-radius-large);
  box-shadow: 0 6px 40px rgba(255,184,108,.15);
  width: 95vw;
  max-width: 425px;
  padding: 34px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-down 0.22s;
  position: relative;
  color: #234B6D;
  margin: auto;
}
@keyframes modal-down {
  from { opacity: 0; transform: translateY(-80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 4px;
  font-size: 1.40rem;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 12px 0;
}
.cookie-setting {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  padding: 6px 0;
}
.cookie-setting .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #FFEEDB;
  border-radius: 14px;
  position: relative;
  outline: none;
  border: 1.3px solid #FFB86C;
  cursor: pointer;
  transition: background 0.13s, border .13s;
}
.cookie-setting .toggle:checked {
  background: #FFB86C;
  border: 1.5px solid #CC7B1E;
}
.cookie-setting .toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2.8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(255,184,108,.16);
  transition: left .16s;
}
.cookie-setting .toggle:checked:before {
  left: 18px;
  background: #fff4e2;
}
.cookie-settings-category {
  font-weight: 600;
  min-width: 92px;
  display: inline-block;
  color: #234B6D;
}
.cookie-essential-info {
  color: #CC7B1E;
  font-size: 0.98em;
  font-weight: 500;
  margin-left: 7px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.cookie-modal .cookie-btn {
  min-width: 0;
  font-size: 1.04rem;
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #CC7B1E;
  cursor: pointer;
}

/* ==== TRANSITIONS & HOVERS ==== */
button, .cta-btn, .card, .feature-grid li, .service-list > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow .20s, background .16s, color .15s;
}
a, nav a, .mobile-nav a, .cta-btn {
  transition: color .15s, background .15s;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1180px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-overview, .service-list {
    gap: 18px;
  }
  .feature-grid li, .service-list > div, .service-overview > div {
    min-width: 180px;
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 8px;
  }
  .card, .testimonial-card {
    padding: 16px 8px;
  }
  .container {
    padding: 0 8px;
  }
  .content-grid, .feature-grid, .service-overview, .service-list {
    flex-direction: column;
    gap: 12px;
  }
  .step-by-step-timeline li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px 10px 8px;
  }
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .logo img {
    height: 34px;
  }
  .hero {
    padding-top: 20px;
    padding-bottom: 24px;
    border-radius: 0 0 18px 18px;
  }
  .testimonial-card {
    padding: 10px 8px;
  }
  .feature-grid li, .service-list > div, .service-overview > div {
    min-width: 120px;
    padding: 12px 4px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 18px 7px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    padding: 0 8px;
  }
}
@media (max-width: 390px) {
  .mobile-menu .mobile-nav a {
    font-size: 1rem;
    padding: 8px 0;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 15px 6px 12px 6px;
    gap: 7px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
  }
}

/* ==== UTILS ==== */
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.hide { display:none!important; }
.show { display:block!important; }


/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2.5px solid #FFB86C;
  outline-offset: 2.5px;
}

/* ==== END OF CSS ==== */
