/* =======================================================
   Scandinavian Clean CSS for Lehmeguaia Servis
   Author: Senior CSS & UI Designer
   -------------------------------------------------------
   Brand Colors:
   --primary: #1A344B;
   --secondary: #F7F7F7;
   --accent: #E39C27;
   Fonts: Montserrat (display), Roboto (body)
   Scandinavian Clean: light, warm, natural, airy
   Only Flexbox layouts, no Grid, no Columns!
   ======================================================= */

/* ========== CSS RESET & BASE ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F7F7;
  color: #1A344B;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A344B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E39C27;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0 32px 0;
}
th, td {
  padding: 14px 16px;
  text-align: left;
}
th {
  background: #EBEFF2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
td {
  background: #fff;
  border-bottom: 1px solid #e3e6e9;
  font-size: 16px;
}
strong {
  font-weight: 600;
  color: #1A344B;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A344B;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.24;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #344256;
  font-weight: 400;
}

/* ========== CONTAINER & LAYOUTS ========== */
.container {
  width: 100%;
  max-width: 1096px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========== SECTION STYLE ========== */
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26, 52, 75, 0.06);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(26,52,75,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 5px 0;
  text-decoration: none;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A344B;
  border-radius: 8px;
  padding: 7px 16px;
  background: none;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EBEFF2;
  color: #E39C27;
  outline: none;
}
.main-nav .cta.primary {
  background: #E39C27;
  color: #fff;
  font-weight: 600;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(227,156,39,0.10);
  margin-left: 10px;
  padding: 9px 22px;
  border: none;
  outline: none;
  transition: background 0.24s, color 0.24s, box-shadow 0.24s;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: #cc8719;
  color: #fff;
  box-shadow: 0 4px 16px rgba(227,156,39,0.18);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1A344B;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 10px;
  transition: background 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EBEFF2;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(26,52,75,0.95);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: 22px;
  right: 30px;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 10px;
  z-index: 201;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E39C27;
  color: #fff;
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 10px 0;
  transition: color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #E39C27;
  outline: none;
}

/* ========== MAIN HERO / CTAs ========== */
.cta {
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  color: #1A344B;
  background: #FDF6E5;
  padding: 10px 28px;
  border: 2px solid #E39C27;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,52,75,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  text-decoration: none;
}
.cta:hover, .cta:focus {
  background: #E39C27;
  color: #fff;
  border-color: #E39C27;
  outline: none;
  box-shadow: 0 4px 16px rgba(227,156,39,0.18);
}
.cta.primary {
  background: #E39C27;
  color: #fff !important;
  border-color: #E39C27;
  box-shadow: 0 3px 12px rgba(227,156,39,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #cc8719;
  color: #fff;
  border-color: #cc8719;
}

/* ========== FLEXBOX PATTERNS ========== */
.card-container, .card-grid, .feature-grid, .services-cards, .testimonial-slider, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fff;
}
.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;
  padding: 20px;
  background: #FAFBFB;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(26,52,75,0.05);
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 240px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px rgba(26,52,75,0.12);
  transform: translateY(-2px) scale(1.018);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 8px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F4F5F8;
  padding: 26px 20px;
  border-radius: 14px;
  min-width: 215px;
  flex: 1 1 260px;
  box-shadow: 0 1px 4px rgba(26,52,75,0.05);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #FAF9F7;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(26,52,75,0.04);
  padding: 24px 20px 16px 20px;
  flex: 1 1 230px;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.service-card .price {
  color: #E39C27;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 9px;
}
.service-detail {
  background: #FBFBFC;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(26,52,75,0.04);
  padding: 22px 18px 12px 18px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.service-detail .price {
  color: #E39C27;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}
.service-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F7F7;
  border-radius: 12px;
  padding: 22px 16px;
  min-width: 140px;
  flex: 1 1 200px;
  box-shadow: 0 1px 6px rgba(26,52,75,0.04);
}
.timeline-step img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #F7F7F7;
  border-radius: 11px;
  padding: 22px 20px 14px 20px;
  box-shadow: 0 1px 6px rgba(26,52,75,0.03);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FAF9F7;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 1.01rem;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}

.pricing-table {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 6px rgba(26,52,75,0.04);
  margin-bottom: 20px;
  overflow: hidden;
}
.pricing-table th {
  background: #F4F5F8;
  color: #1A344B;
}
.pricing-table td {
  color: #344256;
}
.pricing-contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.average-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A344B;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 15px 0 16px 0;
}

.testimonial-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #765e38;
  font-size: 1rem;
  margin-top: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: #fff;
  border-top: 1px solid #e8eaed;
  margin-top: 70px;
  padding: 32px 0 16px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-links a {
  color: #1A344B;
  text-decoration: underline;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin: 0 2px;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #E39C27;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: #525C6A;
}
.footer-contact span {
  margin: 0 2px 2px 2px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbea;
  box-shadow: 0 -4px 24px rgba(29,24,9,0.10);
  padding: 22px 18px 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  z-index: 9000;
  font-size: 1rem;
  border-top: 2px solid #e4dcb9;
  transition: transform 0.4s cubic-bezier(.82,0,.19,1);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-consent-text {
  flex: 1 1 auto;
  color: #1A344B;
}
.cookie-consent-banner .cookie-consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border-radius: 99px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  outline: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #E39C27;
  color: #fff;
}
.cookie-btn.reject {
  background: #515E69;
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  color: #1A344B;
  border: 2px solid #E39C27;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #cc8719;
  color: #fff;
  box-shadow: 0 2px 8px rgba(227,156,39,0.13);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8a8f96;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FDF6E5;
  color: #E39C27;
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(0.98);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 42px rgba(194,179,91,0.16);
  width: 94vw;
  max-width: 440px;
  z-index: 9999;
  padding: 32px 20px 28px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.26s;
}
.cookie-modal.open {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.cookie-modal ul {
  margin: 8px 0 24px 0;
  padding: 0;
  list-style: none;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  padding: 9px 0;
  gap: 12px;
  font-size: 1rem;
}
.cookie-switch {
  margin-left: auto;
  display: inline-block;
  width: 38px;
  height: 22px;
  position: relative;
}
.cookie-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #E39C27;
  border-radius: 22px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background 0.14s;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider {
  background: #1A344B;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.24s;
  box-shadow: 0 1px 3px #e4dcb9c0;
}
.cookie-switch input[type="checkbox"]:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal-footer {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
}

/* ========== UTILITY CLASSES ========== */
.hide {
  display: none !important;
}
.nowrap {
  white-space: nowrap;
}

/* ========== RESPONSIVE LAYOUTS ========== */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .services-cards, .service-listing, .testimonial-slider, .testimonial-listings,
  .card-container, .content-grid {
    gap: 18px;
  }
  .service-detail, .feature, .service-card, .testimonial-card {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.09rem; }
  .content-wrapper { gap: 12px; }
  .feature-grid,
  .services-cards,
  .service-listing,
  .testimonial-slider,
  .testimonial-listings,
  .step-timeline,
  .faq-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonal-card, .feature, .service-card, .timeline-step {
    min-width: 0;
  }
  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact {
    gap: 12px;
    font-size: 0.98rem;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 22px 8px;
  }
  .mobile-menu .mobile-nav {
    padding-left: 15px;
  }
}

/* ========== SCANDINAVIAN MICRO-INTERACTIONS ========== */
.card, .feature, .service-card, .timeline-step {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .feature:hover, .service-card:hover, .timeline-step:hover,
.card:focus-within, .feature:focus-within, .service-card:focus-within, .timeline-step:focus-within {
  box-shadow: 0 6px 24px rgba(26,52,75,0.10);
  transform: translateY(-2px) scale(1.014);
}

/* ========== FORMS ========== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #e3e4e8;
  border-radius: 7px;
  padding: 10px 12px;
  background: #FBFBFC;
  transition: border 0.17s, background 0.15s;
  margin-bottom: 18px;
  width: 100%;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #E39C27;
  background: #fffbe5;
}
label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: #223344;
}

/* ========== MISCELLANEOUS ========== */
::-webkit-input-placeholder { color: #90a4b4; }
::-moz-placeholder { color: #90a4b4; }
:-ms-input-placeholder { color: #90a4b4; }
::placeholder { color: #90a4b4; }

/**************************************
   ENSURE NO GRID, NO COLUMNS, ONLY FLEX
***************************************/
/* --- No grid, no column-count anywhere --- */
