/* RESET & 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f8f9fa;
  color: #222C3A;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D6B878;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}

/*---- VARIABLES/ROOT ----*/
:root {
  --color-primary: #222C3A;
  --color-secondary: #D6B878;
  --color-accent: #FFFFFF;
  --color-bg: #f8f9fa;
  --color-grey: #EDEDED;
  --color-dark: #101723;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-md: 0 2px 14px 0 rgba(61,60,85,0.06);
  --shadow-xl: 0 4px 24px 0 rgba(34,44,58,0.10);
  --transition-main: 0.23s cubic-bezier(.5,.2,0,1);
}

/*---- TYPOGRAPHY ----*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--color-primary);
  line-height: 1.7;
}
.subtitle, .thank-you-text {
  font-size: 1.22rem;
  color: var(--color-dark);
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

strong, b {
  font-weight: 700;
  letter-spacing: 0.01em;
}

/*---- CONTAINER, WRAPPERS & GRIDS ----*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-list, .service-cards, .benefit-list, .usp-list, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-cards, .benefit-list, .values-grid {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 340px;
}
.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;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  min-width: 200px;
  flex: 1 1 270px;
  border-left: 6px solid var(--color-secondary);
}
.testimonial-card strong, .testimonial-card .client {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* For testimonial list, slider, etc */
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

/*---- HEADER ----*/
header {
  background: var(--color-accent);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 105;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 49px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 6px 0;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-main);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  border: none;
  font-size: 1.02rem;
  padding: 13px 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(34,44,58,0.03);
  margin-left: 30px;
  cursor: pointer;
  transition: background var(--transition-main), transform 0.14s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: var(--radius-sm);
  border:none;
  font-size:1.02rem;
  padding: 11px 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 10px;
  cursor: pointer;
  transition: background var(--transition-main), color var(--transition-main), transform 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/*----- HAMBURGER MENU (MOBILE NAV) ------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  color: var(--color-primary);
  background: transparent;
  border-radius: var(--radius-xs);
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  z-index: 110;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  max-width: 90vw;
  background: var(--color-primary);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,.2,.3,1);
  z-index: 500;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--color-secondary);
  font-size: 2rem;
  border-radius: var(--radius-xs);
  border: none;
  margin: 18px 18px 0 0;
  cursor: pointer;
  padding: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 24px 24px 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 13px 0;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(214,184,120,0.1);
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
}

/*---- HERO / HEADER SECTIONS ----*/
.hero, .hero-coating, .gallery-info, .thank-you {
  background: linear-gradient(128deg, #fff 88%, #D6B878 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 60px 0 48px 0;
  margin-bottom: 0;
}
.hero .content-wrapper, .hero-coating .content-wrapper {
  gap: 12px;
  align-items: flex-start;
}
.hero h1, .hero-coating h1 {
  color: var(--color-primary);
}
.hero .btn-primary {
  margin-top: 12px;
}

/*---- FEATURE, SERVICE, BENEFIT, VALUE CARDS ----*/
.feature, .service, .service-card, .benefit, .usp, .value {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 230px;
  min-height: 245px;
  border-bottom: 4px solid var(--color-secondary);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature:hover, .service-card:hover, .usp:hover, .value:hover, .benefit:hover {
  transform: translateY(-4px) scale(1.02) rotate(-0.5deg);
  box-shadow: 0 4px 30px rgba(34,44,58,0.14);
}
.feature img, .service-card img, .value img, .benefit img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: var(--radius-xs);
  background: var(--color-grey);
  padding: 6px;
}

.service-card h3, .feature h3, .benefit h3, .value h3, .usp h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 7px;
}

.service-card p, .feature p, .benefit p, .value p, .usp p {
  font-size: 1.05rem;
  min-height: 54px;
}

.category-descriptions, .project-list-snippet {
  margin-top: 10px;
  margin-bottom: 18px;
  padding: 10px 0 0 0;
}
.see-all {
  color: var(--color-primary);
  font-weight: 600;
  text-underline-offset: 3px;
  text-decoration: underline;
  transition: color 0.16s;
}
.see-all:hover {
  color: var(--color-secondary);
}

.usp-list {
  gap: 20px 32px;
}

.certificates {
  display: flex;
  gap: 24px;
  margin: 24px 0 10px 0;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color-primary);
}
.certificates img {
  width: 32px; height: 32px; vertical-align: middle; margin-right: 7px;
}
.guarantee {
  margin-top: 12px;
  color: var(--color-dark);
  font-weight: 600;
}

/*---- TESTIMONIALS ----*/
.testimonial-slider {
  gap: 24px;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.stars img {
  width: 22px;
  height: 22px;
}

/*---- CTA, CONTACT, MAP, BUSINESS INFO ----*/
.contact-cta, .cta, .submit-review {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  padding: 40px 18px;
}
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.contact-details {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  background: var(--color-grey);
  color: var(--color-primary);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.map-snippet img {
  width: 32px;
  height: 32px;
}
.business-info p {
  margin-bottom: 10px;
}

/*---- FAQ ----*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  transition: box-shadow 0.2s;
  border-left: 4px solid var(--color-secondary);
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}
.faq-item p {
  font-size: 1.03rem;
}
.coating-comparison {
  margin-top: 22px;
  padding: 18px 12px;
  background: var(--color-grey);
  border-radius: var(--radius-sm);
}
.coating-comparison h3 {
  margin-bottom: 10px;
}
.coating-comparison ul {
  list-style: disc inside;
  padding-left: 18px;
}
.coating-comparison li {
  margin-bottom: 5px;
  font-size: 1.02rem;
}

/*---- FOOTER ----*/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 34px 0 22px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 18px;
}
footer a {
  color: var(--color-secondary);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.97rem;
  margin-bottom: 10px;
  transition: color 0.16s;
}
footer a:hover, footer a:focus {
  color: #fff;
}
footer img {
  height: 39px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.footer-contact span {
  color: white;
}
/*---- LEGAL PAGES (PRIVACY, RODO, COOKIES, TERMS) ----*/
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 48px 22px;
  margin-bottom: 62px;
  margin-top: 30px;
}
.legal h1 {
  color: var(--color-primary);
  font-size: 2.1rem;
}
.legal h2 {
  font-size: 1.24rem;
  margin-top: 22px;
}
.legal ul {
  list-style: disc inside;
  margin-bottom: 14px;
  margin-left: 19px;
}
.legal li {
  margin-bottom: 8px;
}

/*----- COOKIE CONSENT BANNER ------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 70px;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -2px 18px rgba(34,44,58,.12);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 24px 20px;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 1.05rem;
  transition: transform 0.4s cubic-bezier(.61,.18,.41,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner button {
  margin-left: 14px;
  padding: 7px 20px;
  border-radius: var(--radius-xs);
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-cookie-accept {
  background: var(--color-primary);
  color: #fff;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.btn-cookie-reject {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}
.btn-cookie-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  margin-left: 7px;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: var(--color-primary);
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(34,44,58, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.32s;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 95vw;
  width: 425px;
  box-shadow: var(--shadow-xl);
  padding: 34px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}
.cookie-modal-content h2 {
  font-size: 1.36rem;
  color: var(--color-primary);
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 1.03rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--color-secondary);
}
.cookie-category .always-on {
  color: var(--color-secondary);
  font-weight: 900;
  margin-left: 8px;
}
.cookie-modal-footer {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 10px; top: 10px;
  font-size: 1.5rem;
  background: transparent;
  color: var(--color-dark);
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-secondary);
  color: #fff;
}

/*---- RESPONSIVENESS: MOBILE FIRST ----*/
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding-left: 10px; padding-right: 10px;
  }
  .content-wrapper {
    gap: 10px;
  }
  header .container {
    gap: 7px;
  }
  footer .container {
    gap: 16px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: 14px;
  }
  header .btn-primary {
    display: none;
  }
  .content-wrapper {
    gap: 7px;
  }
  .hero, .hero-coating, .gallery-info, .thank-you {
    padding: 34px 0 24px 0;
    min-height: 200px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  footer {
    padding: 22px 0 10px 0;
  }
  footer .container {
    flex-direction: column;
    gap: 18px 0;
    align-items: flex-start;
  }
  .card-container, .feature-grid, .service-list, .service-cards, .benefit-list, .usp-list, .values-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  .certificates {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .cookie-modal-content {
    padding: 18px 10px 18px 13px;
    width: 98vw;
    min-height: unset;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.20rem; }
  .btn-primary, .btn-secondary { padding: 10px 13px; font-size: .97rem; }
  .section { padding: 16px 0; }
  .feature, .service-card, .usp, .value, .benefit {
    min-width: unset;
    padding: 13px 10px;
  }
  .testimonial-card {
    padding: 13px 10px;
  }
  .cookie-banner { flex-direction: column; gap: 6px; padding: 10px 7px; font-size: .98rem; }
}
/* Ensure proper spacing between all cards & sections */
.section > *, .content-wrapper > *, .card-container > *, .feature-grid > *, .service-list > *, .service-cards > *, .testimonial-list > *, .testimonial-slider > *, .benefit-list > *, .usp-list > *, .values-grid > * {
  margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child, .card-container > *:last-child, .feature-grid > *:last-child, .service-list > *:last-child, .service-cards > *:last-child, .testimonial-list > *:last-child, .testimonial-slider > *:last-child, .benefit-list > *:last-child, .usp-list > *:last-child, .values-grid > *:last-child {
  margin-bottom: 0 !important;
}

/*--- MICRO-INTERACTIONS & TRANSITIONS ---*/
a, button,
.btn-primary,
.btn-secondary,
footer a,
.see-all,
.mobile-nav a,
.cookie-banner button {
  transition: color 0.19s, background 0.19s, box-shadow .18s, border-color 0.14s;
}
/* Geometric accents */
.feature, .service-card, .usp, .value, .benefit, .faq-item {
  border-radius: 10px 24px 10px 24px;
  border-bottom: 5px solid var(--color-secondary);
  border-top: 0.5px solid var(--color-grey);
}
.testimonial-card {
  border-radius: 24px 10px 24px 10px;
}

/*--- FONT LOAD (add in <head> for real site) ---*/
@font-face {
  font-family: 'Oswald';
  font-weight: 400 700;
  src: local('Oswald'), url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400 700;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

/*--- ACCESSIBILITY ENHANCEMENTS ---*/
::selection {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/*--- Z-INDEX LAYERING FOR OVERLAYS ---*/
header { z-index: 105; }
.mobile-menu { z-index: 500; }
.cookie-banner { z-index: 1000; }
.cookie-modal { z-index: 3000; }

/*--- HIDE ELEMENTS UTILITY ---*/
.hide, .d-none { display: none !important; }
