/* RESET & BASE STYLES (Mobile First) */
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: #F6F6F6;
  color: #232E38;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* FONT IMPORTS (Google Fonts) */
@font-face {
  font-family: 'Oswald';
  src: local('Oswald'), url('https://fonts.googleapis.com/css?family=Oswald:400,600&display=swap');
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
  font-display: swap;
}

/* COLOR VARIABLES + FALLBACKS */
:root {
  --color-primary: #232E38;
  --color-secondary: #6BB7C6;
  --color-accent: #F6F6F6;
  --color-yellow: #FFD93B;
  --color-magenta: #F652A0;
  --color-orange: #FFA45B;
  --color-white: #fff;
  --color-dark: #232E38;
}

/* CONTAINER, SECTIONS, SPACING RULES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADINGS & TYPOGRAPHY */
h1, .hero h1, .thank-you-section h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 2px 3px 0 var(--color-yellow), 0 1px 0 var(--color-secondary);
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-magenta);
  margin-bottom: 10px;
}
p, ul li, ol li, .faq-list li p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}

/* NAVIGATION STYLES */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 8px 0 rgba(89, 196, 233, 0.10);
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  height: 44px;
  margin-right: 14px;
  transition: transform 0.2s;
}
header a img:hover {
  transform: scale(1.07) rotate(-3deg);
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
  box-shadow: 0 3px 12px 0 rgba(255, 185, 59, 0.34);
}
.cta-button {
  background: var(--color-magenta);
  color: var(--color-white);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 28px;
  border-radius: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 4px 20px 0 rgba(246,82,160,0.19);
  transition: background 0.25s, transform 0.13s;
  display: inline-block;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px 0 rgba(246,82,160,0.24);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-primary);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(255,217,59,0.13);
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 22;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-magenta);
  color: var(--color-white);
  transform: scale(1.10) rotate(5deg);
}

/* Hide on desktop by default */
.mobile-menu-toggle {
  display: none;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.87,0,0.13,1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: var(--color-yellow);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(255,217,59,0.16);
  transition: background .18s, color .18s;
  z-index: 202;
}
.mobile-menu-close:hover {
  background: var(--color-magenta);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 80px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.3rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  width: 90%;
  letter-spacing: 0.5px;
  border-radius: 0 12px 12px 0;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-yellow);
  color: var(--color-primary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(98deg, #FFD93B 58%, #6BB7C6 100%);
  padding-top: 54px;
  padding-bottom: 54px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 32px 0 rgba(107,183,198,0.18);
  margin-bottom: 40px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: var(--color-primary);
}
.hero .cta-button {
  margin-left: 0;
  margin-top: 6px;
  box-shadow: 0 6px 24px 0 rgba(246, 82, 160, 0.13);
}

/* FEATURES & CARDS LAYOUT */
.features, .features-interior, .polish-features, .services, .services-overview, .features-benefit, .about, .about-team, .about-philosophy {
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(107,183,198,0.05);
  margin-bottom: 38px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(255,185,59,0.08);
  padding: 22px 20px 22px 20px;
  flex: 1 1 min(240px, 100%);
  min-width: 220px;
  margin-bottom: 20px;
  transition: transform 0.20s, box-shadow 0.22s;
  position: relative;
}
.feature-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(1px 3px 0 #FFD93B) drop-shadow(-1px 1px 0 #6BB7C6);
  transition: transform 0.20s;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.8deg);
  box-shadow: 0 7px 36px 0 rgba(255,217,59,0.17);
}
.feature-item:hover img {
  transform: scale(1.14) rotate(6deg);
}

/* Card Container and Layout Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(246, 82, 160, 0.12);
  padding: 22px 20px;
  transition: transform 0.2s, box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-3px) scale(1.02) rotate(1deg);
  box-shadow: 0 7px 36px 0 rgba(107,183,198,0.15);
}

.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: var(--color-yellow);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(255,217,59,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-primary);
  font-size: 0.97rem;
  font-weight: 700;
  padding-left: 15px;
  border-left: 3px solid var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(246,82,160,0.17);
}
.review-summary {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--color-primary);
  background: var(--color-white);
  border-radius: 10px;
  padding: 7px 18px;
  box-shadow: 0 1px 6px 0 rgba(255,217,59,0.12);
}
.review-summary img {
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Specific List Styles */
.service-list, .benefit-list ul, .feature-descriptions, .hygiene-advantages, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 19px;
}
.service-list strong {
  color: var(--color-secondary);
}

.usp-icons, .feature-icons, .trust-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}
.usp-icons img, .feature-icons img, .trust-icons img {
  height: 40px;
  width: 40px;
  filter: drop-shadow(1px 2px 0 #FFA45B);
}

/* MAP AND CONTACT INFO */
.map {
  margin-top: 18px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(107,183,198,0.10);
  padding: 12px 13px 9px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact-info {
  margin-top: 20px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(255,217,59,0.10);
  padding: 14px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info img {
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

/* FAQ Styles */
.faq-list li {
  margin-bottom: 16px;
  background: var(--color-white);
  border-left: 6px solid var(--color-magenta);
  border-radius: 5px;
  padding: 13px 20px 12px 14px;
  box-shadow: 0 1px 5px 0 rgba(246,82,160,0.08);
  transition: box-shadow 0.14s;
}
.faq-list li:hover {
  box-shadow: 0 6px 14px 0 rgba(107,183,198,0.14);
}
.faq-list h3 {
  margin-bottom: 5px;
  font-size: 1.05rem;
  color: var(--color-secondary);
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 26px 0 16px 0;
  border-radius: 34px 34px 0 0;
  margin-top: 38px;
  box-shadow: 0 -2px 16px 0 rgba(107,183,198,0.13);
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-yellow);
  font-size: 1rem;
  border-radius: 7px;
  padding: 5px 12px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-magenta);
  color: var(--color-white);
}
footer p {
  font-size: 0.9rem;
  color: var(--color-accent);
  text-align: center;
}

/* LEGAL/TEXT SECTIONS */
.legal-privacy, .legal-gdpr, .legal-cookie, .legal-terms {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(246, 82, 160, 0.09);
  margin-bottom: 40px;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
}
.text-section li {
  list-style: disc;
}
.text-section a {
  color: var(--color-secondary);
  font-weight: 600;
  border-bottom: 1px dotted var(--color-secondary);
}
.text-section a:hover {
  color: var(--color-magenta);
  border-bottom: 2px solid var(--color-magenta);
}

/* THANK YOU PAGE STYLES */
.thank-you-section {
  background: linear-gradient(90deg, #FFD93B 60%, #6BB7C6 100%);
  border-radius: 22px;
  box-shadow: 0 2px 20px 0 rgba(246,82,160,0.10);
  padding: 44px 22px;
  margin-bottom: 60px;
}

/* ================== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 -2px 18px 0 rgba(255,217,59,0.22);
  z-index: 1234;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s ease, opacity 0.37s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner strong {
  color: var(--color-yellow);
}
.cookie-banner-buttons {
  display: flex;
  gap: 20px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 3px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(246,82,160,0.10);
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept {
  background: var(--color-yellow);
  color: var(--color-primary);
}
.cookie-banner .accept:hover {
  background: var(--color-magenta);
  color: var(--color-white);
}
.cookie-banner .reject {
  background: var(--color-magenta);
  color: var(--color-white);
}
.cookie-banner .reject:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .settings:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,46,56,0.73);
  z-index: 1250;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-dark);
  border-radius: 18px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 36px 0 rgba(255,217,59,0.23);
  padding: 32px 26px 22px 26px;
  position: relative;
  animation: cookieModalEnter 0.39s cubic-bezier(0.78,-0.08,0.27,1.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes cookieModalEnter {
  from { transform: translateY(60px) scale(0.9); opacity:0.6; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-secondary);
  font-size: 1.3rem;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 18px;
  background: var(--color-yellow);
  color: var(--color-primary);
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(255,217,59,0.14);
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .close-modal:hover {
  background: var(--color-magenta);
  color: var(--color-white);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--color-secondary);
  width: 18px;
  height: 18px;
}
.cookie-category .always-on {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.90rem;
  margin-left: 5px;
}
.cookie-modal .save-btn {
  margin-top: 17px;
  font-family: 'Oswald', Arial, sans-serif;
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 24px;
  border: none;
  box-shadow: 0 1px 7px 0 rgba(246,82,160,0.13);
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .save-btn:hover {
  background: var(--color-yellow);
  color: var(--color-primary);
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.cta-button, .cookie-banner button, .cookie-modal .save-btn {
  transition: background 0.24s, color 0.18s, transform 0.18s;
}
.card, .feature-item, .testimonial-card {
  animation: fadeCardIn 0.9s cubic-bezier(0.67,-0.48,0.32,1.68) 0.1s both;
}
@keyframes fadeCardIn {
  from { opacity: 0; transform: translateY(32px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========== RESPONSIVE RULES =========== */
@media (min-width: 481px) {
  .hero h1, .thank-you-section h1 {
    font-size: 2.7rem;
  }
  h2 {
    font-size: 1.9rem;
  }
}
@media (min-width: 650px) {
  .feature-grid {
    flex-direction: row;
    justify-content: flex-start;
  }
  .feature-item {
    flex: 1 1 220px;
    min-width: 210px;
    margin-right: 0;
  }
  .usp-icons, .feature-icons, .trust-icons {
    gap: 28px;
  }
}
@media (min-width: 769px) {
  .hero {
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 0 0 46px 46px;
  }
  .container {
    padding-left: 36px;
    padding-right: 36px;
  }
  .section {
    padding: 60px 36px;
    margin-bottom: 80px;
  }
  .content-wrapper {
    gap: 36px;
  }
  .feature-grid, .card-container, .content-grid {
    gap: 32px;
  }
  .main-nav {
    gap: 28px;
  }
  .card {
    padding: 32px 28px;
  }
  .testimonial-card {
    padding: 32px 28px;
    gap: 32px;
  }
  .thank-you-section {
    padding: 82px 66px;
    max-width: 880px;
  }
  .cookie-modal {
    min-width: 440px;
    max-width: 450px;
  }
  .footer-nav {
    gap: 38px;
  }
}
@media (max-width: 1023px) {
  header .main-nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1024px) {
  header .main-nav, header .cta-button {
    display: flex !important;
  }
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}
/* FLEX DIRECTION SWITCH FOR FLEX CONTAINERS */
@media (min-width: 900px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section, .thank-you-section {
    padding: 26px 8px;
  }
  .testimonial-card, .card {
    padding: 16px 10px;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  .hero, .thank-you-section {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}

