/* CSS RESET & BASELINE (Normalize+Reset) */
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F3F4F6;
  color: #20426A;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #20426A; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #3A8E4C; }
ul, ol { list-style: none; margin:0; padding:0; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #20426A;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, li, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #22334E;
}
.subheadline {
  font-size: 1.15rem;
  color: #506484;
  font-weight: 400;
  margin-bottom: 24px;
}

/* SCANDINAVIAN CLEAN BASE - COLORS, SPACING, SHADOWS, RADIUS */
:root {
  --color-primary: #20426A;
  --color-secondary: #3A8E4C;
  --color-accent: #F3F4F6;
  --color-bg: #F9FAFB;
  --color-card: #FFFFFF;
  --color-border: #E0E5EB;
  --color-shadow: rgba(32,66,106,0.05);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-sm: 7px;
  --shadow-base: 0 2px 11px 0 var(--color-shadow);
  --shadow-hover: 0 2px 18px 0 rgba(32,66,106,0.11);
  --transition: 0.22s cubic-bezier(.47,.14,.41,.84);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: var(--color-card);
  box-shadow: 0 2px 11px 0 var(--color-shadow);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 42px;
  margin-right: 28px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Titillium Web', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 4px;
  color: #20426A;
  opacity: 0.92;
  border-radius: var(--radius-sm);
  transition: background .18s, color .18s;
}
header nav a:hover,
header nav a:focus {
  color: var(--color-secondary);
  background: #e6ede9;
}
header .cta-btn {
  margin-left: 26px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,42,63,0.92);
  z-index: 2222;
  transform: translateX(-100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #FFF;
  cursor: pointer;
  margin-left: auto;
  margin-right: 18px;
  margin-bottom: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding-left: 36px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.12rem;
  font-family: 'Titillium Web', Arial, sans-serif;
  padding: 12px 0;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(229,239,235,.13);
}

@media (max-width: 1024px) {
  header .container nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* MAIN HERO */
.hero, .thank-you-info {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 17px 0 var(--color-shadow);
  margin-top: 26px;
  margin-bottom: 56px;
  padding: 44px 0 44px 0;
}
.hero .container, .thank-you-info .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper, .thank-you-info .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #FFF;
  font-family: 'Titillium Web', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  padding: 14px 38px;
  margin-top: 10px;
  min-width: 190px;
  box-shadow: var(--shadow-base);
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  letter-spacing: 0.01em;
  text-align: center;
}
.cta-btn.primary {
  background: var(--color-primary);
  color: #FFF;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #284F82;
  box-shadow: var(--shadow-hover);
  color: #fff;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #33743d;
  box-shadow: var(--shadow-hover);
  color: #FFF;
}

/* SECTION SPACING & ALIGNMENT MANDATORY RULES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card {
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-base);
  position: relative;
  min-width: 270px;
  max-width: 360px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s;
}
.card:hover { box-shadow: var(--shadow-hover); }
.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: var(--radius-lg);
  box-shadow: var(--shadow-base);
  margin-bottom: 20px;
  transition: box-shadow .17s;
  max-width: 540px;
  min-width: 0;
}
.testimonial-card:hover {
  box-shadow: 0 4px 25px 0 rgba(32,66,106, 0.15);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES, SERVICES, LISTINGS --- */
.features {
  margin-bottom: 60px;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  padding: 40px 0;
}
.features h2 {
  text-align: center;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 8px;
}
.feature_grid li {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-base);
  padding: 24px 18px 20px 18px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--color-border);
  transition: box-shadow .16s;
}
.feature_grid li:hover {
  box-shadow: var(--shadow-hover);
}
.feature_grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
}
.feature_icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 12px 0 18px 0;
}
.feature_icons li {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 18px 18px 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  min-width: 210px;
}
.feature_icons img {
  width: 28px;
  height: 28px;
}

/* SERVICES - LIST PREVIEW & OVERVIEW */
.services-preview, .services-overview, .services, .services-detailed {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  margin-bottom: 60px;
  padding: 40px 0;
}
.service_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.service_list li {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 1rem;
  color: #22334E;
  border: 1px solid var(--color-border);
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(32,66,106,0.03);
}
.service_list h3 { margin-bottom: 4px; }

/* CARDS, STATS, CERTIFICATION */
.stats, .certification-list, .guarantee_info, .service_categories, .staff-skills, .customer-care-principles {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 9px 0 rgba(32,66,106,0.04);
  border: 1px solid var(--color-border);
}

/* TEAM PROFILES */
.team_profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team_profiles > div {
  flex: 1 1 240px;
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 22px 18px;
  min-width: 190px;
  box-shadow: 0 2px 8px 0 rgba(32,66,106,0.03);
}

/* ABOUT VALUES */
.about-values ul li { margin-bottom: 8px; }

/* TESTIMONIALS */
.testimonials, .testimonials-list {
  margin-bottom: 60px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  padding: 40px 0;
}
.testimonials h2, .testimonials-list h2 { text-align: center; }
.testimonial-slider, .testimonials-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 28px 0;
}
.testimonial-card p {
  font-size: 1rem;
  color: #22334E;
  margin-bottom: 10px;
  font-style: italic;
}
.testimonial-card .customer {
  font-family: 'Titillium Web', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.rating-summary {
  margin: 24px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  color: var(--color-primary);
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 10px 22px;
  box-shadow: var(--shadow-base);
  width: fit-content;
}
.rating-summary img {
  width: 32px; height: 32px;
}

/* CASES & STORIES */
.case-summary {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 11px 0 rgba(32,66,106,0.04);
  min-width: 220px;
}

/* CONTACT INFO & QUICK CONTACT */
.quick-contact, .contact-details {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  margin-bottom: 60px;
  padding: 40px 0;
}
.quick-contact .content-wrapper, .contact-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}
.contact-details address, .contact-details div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.quick-contact .mini-form, .mini-form {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-base);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ACCESS, MAP, PARKING INFO */
.access-info .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}
.map-placeholder, .parking-info, .public-transport-info {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 20px 16px;
  min-width: 200px;
  box-shadow: 0 2px 8px 0 rgba(32,66,106,0.03);
  margin-bottom: 8px;
}

/* CTA ZONES */
.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* LEGAL SECTIONS */
.legal {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal .content-wrapper {
  max-width: 830px;
  margin: 0 auto;
}
.legal ul { margin-left: 16px; }
.legal ul li { position: relative; padding-left: 16px; margin-bottom: 8px; }
.legal ul li:before {
  content: '\2022';
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* FOOTER */
footer {
  background: var(--color-card);
  padding: 28px 0 18px 0;
  color: #22334E;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 15px 0 var(--color-shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer nav a {
  font-size: 0.97rem;
  color: #22334E;
  opacity: 0.92;
  border-radius: var(--radius-sm);
  transition: background .16s, color .16s;
  padding: 4px 4px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-secondary);
  background: #e4f0e7;
}
footer p {
  font-size: 0.95rem;
  color: #506484;
}

/* --- COOKIE BANNER & CONSENT MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 15px 0 var(--color-shadow);
  border-top: 1px solid var(--color-border);
  padding: 20px 18px;
  z-index: 3332;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  min-height: 64px;
  transition: transform .22s;
}
.cookie-banner .banner-text {
  font-size: 1rem;
  color: #20426A;
  margin-right: 8px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  margin-left: 8px;
  font-size: 1rem;
  font-family: 'Titillium Web', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: #eee;
  color: var(--color-primary);
  transition: background .14s, color .14s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #257A39;
}
.cookie-banner .cookie-btn.reject {
  background: #e4e8ed;
  color: #20426A;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #d0dad6;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #3A8E4C;
  border: 1px solid #bfc5c9;
  margin-left: 0;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #e7efe7;
  color: #236c37;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,66,106,0.23);
  z-index: 3344;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 34px 0 rgba(32,66,106,0.15);
  padding: 33px 28px 24px 28px;
  min-width: 340px;
  max-width: 440px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn .3s;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.cookie-modal label {
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: #e4e8ed;
  border-radius: 12px;
  margin-left: 8px;
  transition: background .18s;
}
.cookie-modal .cookie-switch input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-modal .cookie-switch .slider {
  position: absolute;
  top: 3px; left: 3px;
  background: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  transition: left .18s;
  box-shadow: 0 1px 4px rgba(32,66,106,0.12);
}
.cookie-modal .cookie-switch input:checked + .slider {
  left: 23px;
  background: var(--color-secondary);
}
.cookie-modal .cookie-category.essential label {
  color: var(--color-primary);
  opacity: 0.84;
}
.cookie-modal .cookie-category.essential .cookie-switch {
  background: #d1e2cf;
}
.cookie-modal .cookie-category.essential .slider { background: #3A8E4C; }
.cookie-modal .modal-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Titillium Web', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-modal .cookie-btn.save {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal .cookie-btn.save:hover, .cookie-modal .cookie-btn.save:focus {
  background: #245289;
}
.cookie-modal .cookie-btn.cancel {
  background: #e4e8ed;
  color: #20426A;
}
.cookie-modal .cookie-btn.cancel:hover, .cookie-modal .cookie-btn.cancel:focus {
  background: #d0dad6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

/* UTILITY SPACING */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}

/* RESPONSIVE FLEX - SECTION LAYOUTS */
@media (max-width: 992px) {
  .container { max-width: 98vw; padding: 0 12px; }
  .feature_grid, .feature_icons { gap: 16px; }
  .team_profiles { gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.09rem; }
  .hero, .thank-you-info, .features, .services-preview, .services-overview, .about-preview, .testimonials, .testimonials-list, .quick-contact, .about, .legal, .services, .about-values, .cta, .access-info, .services-detailed {
    margin-top: 16px;
    margin-bottom: 40px;
    padding: 24px 0;
  }
  .container { padding-left: 8px; padding-right: 8px; }
  .feature_grid, .feature_icons, .team_profiles, .testimonial-slider, .content-grid, .case-summary .content-grid, .testimonials-list .content-wrapper, .quick-contact .content-wrapper, .contact-details .content-wrapper, .access-info .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .feature_grid li, .feature_icons li, .team_profiles > div {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .testimonial-card { max-width: 98vw; min-width: 0; }
  .case-summary { min-width: 0; }
  .card-container, .card-grid { gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .cta .content-wrapper { gap: 14px; }
}
@media (max-width: 460px) {
  h1, h2, h3, h4 { text-align: left; }
  .hero .container, .thank-you-info .container { padding: 0 2px; }
  .feature_grid li, .feature_icons li { padding: 13px 9px; font-size: 0.96rem; }
  .testimonial-card { padding: 13px 5px; }
  .stats, .certification-list, .guarantee_info, .service_categories, .staff-skills, .customer-care-principles, .map-placeholder, .parking-info, .public-transport-info {
    padding: 12px 8px;
  }
  .cookie-modal { min-width: 0; max-width: 99vw; padding: 22px 6px 16px 8px; }
}

/* MICRO-ANIMATIONS */
.cta-btn, .cookie-btn {
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform .16s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.98);
}
.card:hover, .feature_grid li:hover, .feature_icons li:hover {
  box-shadow: 0 6px 20px 0 rgba(32,66,106,0.13);
}

/* FOCUS STATES & ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus, input:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* MISC UTILS */
.hidden { display: none !important; }

/* PRINT OPTIMIZATION */
@media print { 
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #111 !important; }
}
