/* ============================================================
   CSS RESET & NORMALIZE (mobile-first, Scandinavian Clean)
=============================================================== */
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 {
  scroll-behavior: smooth;
  height: 100%;
  min-height: 100vh;
  background: #F8F9FA;
}
body {
  min-height: 100vh;
  color: #22292F;
  background: #F8F9FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
img, svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #274472;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.51,.92,.24,1);
}
a:hover, a:focus {
  color: #F5C76A;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
}
button, input[type="button"], input[type="submit"] {
  cursor: pointer;
  font-family: inherit;
}
input, select, textarea, button {
  font-size: 16px;
  font-family: inherit;
}

/* ======================
   TYPOGRAPHY
======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274472;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.24;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
@media (min-width: 600px) {
  h1 {font-size: 2.8rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.22rem;}
}
.subheadline {
  font-size: 1.09rem;
  color: #647082;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
strong, b {
  font-weight: 700;
  color: #274472;
}

/* ===============================
   CONTAINER / STRUCTURE / LAYOUT
================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 28px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(38,48,60,0.03), 0 1px 4px rgba(38,48,60,0.06);
}

/* ========================
   HEADER & NAVIGATION
========================== */
header {
  background: #FFFFFFee;
  box-shadow: 0 1px 8px rgba(39, 68, 114, 0.04);
  position: sticky;
  top: 0;
  z-index: 25;
  width: 100%;
  min-height: 70px;
  transition: background 0.3s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 2px;
}
.main-nav {
  display: none;
}
.mobile-menu-toggle {
  font-size: 2.1rem;
  color: #274472;
  background: none;
  border: none;
  padding: 10px 10px 10px 16px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E6EEF3;
  color: #F5C76A;
}
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 1rem;
  }
  .main-nav a {
    color: #2a3542;
    padding: 8px 12px;
    border-radius: 7px;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: color .19s, background .24s;
    font-weight: 500;
  }
  .main-nav a.cta-primary {
    background: #274472;
    color: #fff;
    font-weight: 700;
    border-radius: 7px;
    padding: 8px 20px;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 6px 0 rgba(39,68,114,0.10);
    transition: background .22s, color .19s, box-shadow .18s;
  }
  .main-nav a.cta-primary:hover,
  .main-nav a.cta-primary:focus {
    background: #F5C76A;
    color: #274472;
    box-shadow: 0 2px 12px 0 rgba(39,68,114,0.12);
  }
  .main-nav a:hover, .main-nav a:focus {
    background: #F5C76A;
    color: #274472;
    text-decoration: none;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================
     MOBILE MENU NAV
========================= */
.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 6px 62px rgba(39,68,114,0.10);
  transform: translateX(-100%);
  transition: transform 0.30s cubic-bezier(.7,.04,.34,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px 24px 26px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #274472;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 8px;
  padding: 6px 12px 6px 6px;
  border-radius: 7px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E6EEF3;
  color: #F5C76A;
}
.mobile-nav {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #274472;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 13px 0 9px 4px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
  font-weight: 500;
  line-height: 1.3;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5C76A;
  color: #274472;
  text-decoration: none;
}

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

/* ===================
     HERO SECTION
==================== */
.hero {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 34px 0 rgba(49,61,77,0.052);
  padding: 52px 0 42px 0;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 13px;
}
@media (min-width: 900px) {
  .hero {
    padding: 64px 0 60px 0;
  }
  .hero .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .hero .content-wrapper {
    gap: 18px;
  }
}

/* =======================================
   FLEXBOX GRIDS & CARD CONTAINER PATTERNS
==========================================*/
.card-container,
.card-grid,
.feature-grid, 
.usp-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 1px 11px 0 rgba(39,68,114,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow .22s;
}
.card:hover {
  box-shadow: 0 8px 26px 0 rgba(39,68,114,0.12);
}
@media (max-width: 768px) {
  .card-container, .card-grid, .feature-grid, .usp-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.feature-grid > div,
.usp-grid > div,
.service-grid > div {
  background: #F7FBFF;
  border-radius: 14px;
  padding: 32px 22px;
  box-shadow: 0 2px 12px rgba(163,181,202,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 250px;
  min-width: 180px;
  transition: box-shadow .17s, background .18s;
}
.feature-grid > div:hover, .usp-grid > div:hover, .service-grid > div:hover {
  background: #FAF9F5;
  box-shadow: 0 4px 18px 0 rgba(210,191,111,0.08);
}

.icon {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  opacity: 0.96;
}

/* =============================
   SECTION & CARD LAYOUTS
============================== */
.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: 14px;
  background: #F8F9FB;
  border-left: 5px solid #F5C76A;
  border-radius: 11px;
  padding: 20px 24px 20px 22px;
  margin-bottom: 22px;
  box-shadow: 0 2px 5px 0 rgba(149,162,177,0.062);
  font-size: 1.06rem;
  transition: box-shadow .18s, border-color .16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(149,162,177,0.12);
  border-left: 5px solid #274472;
}
.testimonial-card p {
  color: #22292F;
  font-size: 1.06rem;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: #647082;
  font-size: 0.98rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card .rating {
  color: #F5C76A;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: -6px;
}

.before-after-descriptions {
  border-radius: 11px;
  background: #E6EEF3;
  padding: 20px;
  color: #274472;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-item,
.installation-steps,
.quality-guarantees,
.warranty-info,
.safety-highlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #F7FBFF;
  border-radius: 11px;
  padding: 22px 22px 20px 22px;
  box-shadow: 0 2px 8px rgba(164,184,196,0.09);
}

/* ========================
  SPECIAL CONTENT BLOCKS
========================= */
.text-section{
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.step-by-step-process {
  background: #F9F9FB;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 8px 0 rgba(80,107,149,0.06);
  margin-bottom: 15px;
}
.step-by-step-process ol {
  margin-bottom: 0;
  color: #274472;
}
.service-features ul, .wall-construction-types ul {
  color: #274472;
}
.quality-guarantees ul, .installation-steps ol, .wall-removal-process ol {
  margin-bottom: 0;
}
.safety-highlight p {
  color: #21508e;
  margin-bottom: 0;
}
.confirmation {
  display: flex;
  flex-direction: column;
  gap: 21px;
  background: #F7FBFF;
  border-radius: 13px;
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(164,184,196,0.09);
  align-items: flex-start;
}
.next-steps-info {
  background: #E6EEF3;
  border-radius: 8px;
  padding: 14px 18px;
  color: #274472;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =====================
  BUTTONS & CTAS
====================== */
.cta-primary {
  background: #274472;
  color: #FFF;
  border: none;
  display: inline-block;
  padding: 13px 28px 11px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.10rem;
  box-shadow: 0 3px 16px rgba(39,68,114,0.15);
  transition: background .21s, color .17s, box-shadow .15s;
  margin-top: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F5C76A;
  color: #274472;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(39,68,114,0.18);
}

button, .btn {
  background: #A4B8C4;
  color: #22292F;
  border: none;
  border-radius: 7px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(164,184,196,0.10);
  transition: background .17s, color .13s;
}
.btn:hover, .btn:focus, button:hover, button:focus {
  background: #F5C76A;
  color: #274472;
}

/* =======================
   FOOTER
======================== */
footer {
  background: #F2F3F3;
  padding: 36px 0 12px 0;
  font-size: 1.01rem;
  color: #646F86;
  margin-top: 65px;
  border-top: 2px solid #e6eef3;
  box-shadow: 0 -4px 36px rgba(164,184,196,0.045);
}
footer .container {
  padding-left: 20px;
  padding-right: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
footer nav {
  margin-top: 5px;
  margin-bottom: 5px;
}
footer nav a {
  color: #274472;
  margin-right: 7px;
  padding: 2px 7px 2px 6px;
  border-radius: 5px;
  transition: background .13s, color .13s;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
}
footer nav a:hover, footer nav a:focus {
  background: #F5C76A;
  color: #274472;
}
footer img {
  max-width: 42px;
  margin-bottom: 7px;
}
@media (min-width: 680px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* ============================
   COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #FFFFFFEE;
  color: #22292F;
  box-shadow: 0 -2px 16px rgba(39,68,114,0.11);
  border-top: 2px solid #E6EEF3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 32px 20px 24px;
  font-size: 1rem;
  min-height: 70px;
  animation: slideInBottom 0.44s cubic-bezier(.5,.85,.47,1.36);
}
@keyframes slideInBottom {
  0% {transform: translateY(80%); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-btn {
  background: #F5C76A;
  color: #274472;
  border: none;
  border-radius: 7px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 18px;
  margin-right: 4px;
  margin-top: 3px;
  box-shadow: 0 1px 4px 0 rgba(149,162,177,0.08);
  transition: background .17s, color .14s;
}
.cookie-btn.secondary {
  background: #A4B8C4;
  color: #274472;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #274472;
  color: #FFF;
  outline: none;
}

.cookie-banner-settings {
  background: none;
  color: #647082;
  text-decoration: underline;
  font-size: 0.98rem;
  border: none;
  margin-left: 8px;
  cursor: pointer;
}
.cookie-banner-settings:hover,
.cookie-banner-settings:focus {
  color: #274472;
  text-decoration: none;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 11000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39,68,114,0.12);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.17s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}

.cookie-modal {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 10px 60px rgba(39,68,114,0.15);
  padding: 35px 32px 26px 32px;
  min-width: 320px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalPopIn 0.24s cubic-bezier(.65,1.2,.55,1);
}
@keyframes modalPopIn {
  0% {transform: scale(.90); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal-close {
  background: none;
  color: #274472;
  border: none;
  font-size: 2rem;
  position: absolute;
  right: 15px;
  top: 11px;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 7px;
  transition: background .14s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #E6EEF3;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-cat label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #274472;
}
.cookie-cat input[type="checkbox"]:disabled + span {
  color: #647082;
  opacity: 0.7;
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 0;
    width: 94vw;
    max-width: 99vw;
    padding: 19px 9vw 22px 6vw;
  }
}

/* =======================
    RESPONSIVE DESIGN
======================= */
@media (max-width: 990px) {
  .footer .content-wrapper {
    flex-direction: column;
    gap: 34px;
  }
}
@media (max-width: 900px) {
  header .container {padding-left: 14px; padding-right: 12px;}
}
@media (max-width: 1000px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 6px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 34px 0 28px 0;
    border-radius: 15px;
  }
  h1 {font-size: 1.5rem}
  h2 {font-size: 1.16rem;}
  h3 {font-size: 1.01rem;}
}
@media (max-width: 600px) {
  .container {padding-left:6px;padding-right:6px;}
  .feature-grid>div, .usp-grid>div, .service-grid>div {
    padding: 18px 8px;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px 12px 13px 10px;
    border-radius: 7px;
  }
}

/* ========== ANIMATION ========== */
.cta-primary, .card, .feature-grid > div, .service-grid > div, .testimonial-card {
  transition:
    box-shadow .18s cubic-bezier(.39,.57,.29,1.1),
    background .22s,
    color .18s;
}

/* === ADDITIONAL ACCESSIBILITY === */
:focus-visible {
  outline: 2px dashed #F5C76A !important;
  outline-offset: 2px;
}

/* === SCROLLBAR (for modern browsers, subtle) === */
::-webkit-scrollbar {
  width: 9px;
  background: #E6EEF3;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #A4B8C4;
  border-radius: 10px;
  min-height: 44px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F5C76A;
}

/* ========== MISC UTILITIES ========== */
.mt-1 {margin-top: 8px;}
.mt-2 {margin-top: 16px;}
.mt-3 {margin-top: 32px;}
.mb-2 {margin-bottom: 16px;}
.mb-3 {margin-bottom: 32px;}
.gap-1 {gap: 12px;}
.gap-2 {gap: 24px;}
.gap-3 {gap: 32px;}

/* ========== BRAND FORM ELEMENTS (if any will come) ========= */
input, textarea, select {
  border-radius: 7px;
  border: 1px solid #A4B8C4;
  background: #F7FBFF;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #274472;
  width: 100%;
  transition: border .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F5C76A;
  outline: none;
}

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