/* =========================
   CSS RESET & NORMALIZATION
   ========================= */
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;
  font-size: 16px;
}
body {
  background: #F9FAF6;
  color: #1C2C2E;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #236466;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0c8672;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #236466;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.33rem;
  color: #22779c;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #236466;
}
p {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #26373A;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* =========================
   BRAND COLORS
   ========================= */
:root {
  --primary: #236466;
  --secondary: #C1DADB;
  --accent: #F9FAF6;
  --vibrant-blue: #1b98e0;
  --electric-green: #14E198;
  --hot-pink: #FF4088;
  --high-yellow: #FAE100;
  --card-shadow: rgba(33,108,142,0.11);
  --cta-shadow: rgba(26, 152, 224, 0.17);
}

/* ================
   CONTAINER LAYOUT
   ================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.text-section {
  background: var(--accent);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 3px 16px var(--card-shadow);
}

/* ================
   SECTION SPACING
   ================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards and Content Grid */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--vibrant-blue);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.22s, box-shadow 0.15s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 28px var(--electric-green);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  box-shadow: 0 2px 24px rgba(27, 152, 224, 0.07);
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 10px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  display: inline-block;
  padding: 13px 30px;
  background: linear-gradient(90deg, var(--vibrant-blue) 70%, var(--electric-green));
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 28px var(--cta-shadow);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  margin-left: 16px;
  margin-top: 0;
  transition: background 0.16s, box-shadow 0.16s, transform 0.12s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--electric-green) 50%, var(--hot-pink));
  box-shadow: 0 8px 36px var(--vibrant-blue);
  transform: translateY(-2px) scale(1.05);
}
.cta-link {
  color: var(--vibrant-blue);
  font-weight: 600;
  font-family: 'Montserrat';
  text-decoration: underline;
  transition: color 0.12s;
  font-size: 1.13rem;
}
.cta-link:hover, .cta-link:focus {
  color: var(--hot-pink);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  margin-left: 18px;
}
/* Hamburger for mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #18494a;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.54,0.01,0,1), opacity 0.25s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin: 18px 22px 10px 0;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 42px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 15px 22px;
  border-radius: 14px;
  width: 95vw;
  max-width: 320px;
  text-align: center;
  transition: background 0.18s, color 0.18s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vibrant-blue);
  color: var(--high-yellow);
}

/* ==================
   HERO & SPACING
   ================== */
.hero {
  background: var(--secondary);
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 0 60px 0 var(--card-shadow);
  text-align: center;
}

/* =============
   FEATURES GRID
   ============= */
.feature-grid, .service-grid, .method-list, .feature-list, .floor-types-list, .cleaning-methods, .maintenance-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature-grid li, .service-grid li, .method-list li, .feature-list li, .floor-types-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--card-shadow);
  padding: 32px 24px 24px 24px;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.16s, box-shadow 0.13s;
  margin-bottom: 0;
}
.feature-grid li:hover,
.service-grid li:hover,
.method-list li:hover,
.feature-list li:hover,
.floor-types-list li:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 38px rgba(20, 225, 152, 0.16);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--vibrant-blue);
  padding: 26px 22px 20px 22px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.process-steps li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px var(--card-shadow);
  padding: 28px 20px 16px 20px;
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 320px;
  text-align: left;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ol.process-steps {
  counter-reset: procstep;
}
.process-steps li::before {
  counter-increment: procstep;
  content: counter(procstep) ".";
  font-size: 1.6rem;
  font-family: 'Montserrat';
  color: var(--hot-pink);
  background: var(--electric-green);
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ============
   STAR RATING
   ============ */
.star-rating {
  font-size: 1.4rem;
  color: var(--high-yellow);
  letter-spacing: 2.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: -10px;
}

/* =====================
   TESTIMONIAL COLORS
   ===================== */
.testimonial-card p, .testimonial-card span {
  color: #111921;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-family: 'Open Sans';
  text-align: center;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Montserrat';
  font-style: italic;
  color: #236466;
}


/* =============
   FOOTER
   ============= */
footer {
  background: var(--primary);
  color: var(--accent);
  margin-top: 64px;
  padding-top: 36px;
  padding-bottom: 36px;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer img {
  width: 54px;
  height: auto;
  margin-right: 26px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 6px;
  transition: background 0.14s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--electric-green);
  color: var(--primary);
}
footer p {
  margin: 0;
  color: var(--secondary);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/* ==========================
   CONTACT INFO STYLES
   ========================== */
.contact-info-snippet, .contact-info-full {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}
.contact-info-snippet p, .contact-info-full p {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.1rem;
}
.contact-info-snippet img, .contact-info-full img {
  width: 21px;
  height: 21px;
}
.business-hours {
  margin-top: 18px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 1.09rem;
}

address {
  font-style: normal;
  color: #26373A;
  font-size: 1.07rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.text-section ul, .text-section ol, ul, ol {
  padding-left: 16px;
  margin-bottom: 14px;
}
.text-section ul li, ul li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 15px;
  color: #1D343A;
  font-size: 1rem;
}
.text-section ul li:before, ul li:before {
  content: '\2022';
  color: var(--hot-pink);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4em;
  line-height: 1;
}
.text-section ol li {
  color: #1C2C2E;
  font-size: 1rem;
}

/* ===========
   FAQ-LIST
   =========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}
.faq-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px var(--card-shadow);
  padding: 18px 21px 8px 21px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-list li h3 {
  color: var(--vibrant-blue);
  font-size: 1.07rem;
  margin-bottom: 0;
}
.faq-list li p {
  color: #18494a;
  font-size: 1rem;
  margin-bottom: 0;
}

/* =============
   BUTTONS
   ============= */
button, .cta-btn, .cta-link {
  transition: background 0.21s, color 0.16s, box-shadow 0.17s, transform 0.14s;
}
button:focus, .cta-btn:focus, .cta-link:focus {
  outline: 2px solid var(--hot-pink);
  outline-offset: 2px;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9900;
  background: #fff;
  color: #26373A;
  border-top: 4px solid var(--vibrant-blue);
  box-shadow: 0 -2px 40px rgba(35,100,102,0.15);
  padding: 25px 16px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  opacity: 1;
  transition: opacity 0.35s, transform 0.29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner p {
  color: #26373A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
}
.cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 8px;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 23px;
  margin: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.17s, box-shadow 0.16s;
}
.cookie-accept {
  background: var(--vibrant-blue);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--electric-green);
  color: #18494a;
}
.cookie-reject {
  background: #faebee;
  color: var(--hot-pink);
  border: 2px solid var(--hot-pink);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 12000;
  background: rgba(35, 100, 102, 0.50);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.27s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 19px;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 6px 44px var(--card-shadow);
  width: 94vw;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #18494a;
}
.cookie-modal-content h2 {
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 1.44rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 11px;
  background: var(--secondary);
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.05rem;
  color: #18494a;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  height: 21px;
  width: 21px;
}
.cookie-category .cookie-required {
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  font-size: 0.9rem;
  padding: 5px 11px;
  margin-left: 12px;
  font-weight: 700;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}

/* ===========
   ANIMATIONS
   =========== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes shakeBtn {
  0%,100% { transform: translateX(0); }
  23% { transform: translateX(-4px); }
  43% { transform: translateX(5px); }
  63% { transform: translateX(-2px); }
  83% { transform: translateX(3px); }
}
.cta-btn:focus {
  animation: shakeBtn 0.35s;
}

/* ============
   RESPONSIVITY
   ============ */
@media (max-width: 1024px) {
  .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }
  .footer-nav {
    flex-direction: row;
    gap: 26px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  section {
    margin-bottom: 38px;
    padding: 26px 7px;
  }
  .content-wrapper, .text-section  {
    gap: 18px;
    padding: 18px 6px;
  }
  .hero {
    padding: 22px 9px;
    margin-bottom: 33px;
  }
  .feature-grid, .service-grid, .method-list, .feature-list, .floor-types-list, .process-steps {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid li, .service-grid li, .method-list li, .feature-list li, .floor-types-list li, .process-steps li {
    min-width: 0;
    max-width: 100%;
    padding: 20px 12px 12px 14px;
  }
  .card-container, .content-grid {
    gap: 13px;
  }
  .testimonial-card {
    padding: 12px;
    box-shadow: 0 2px 12px var(--vibrant-blue);
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer {
    padding-top: 24px;
    padding-bottom: 20px;
  }
  .footer-nav {
    gap: 13px;
  }
  .mobile-nav {
    margin-top: 22px;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .feature-grid li, .service-grid li, .method-list li, .feature-list li, .floor-types-list li, .process-steps li {
    padding: 12px 7px 10px 11px;
    font-size: 0.99rem;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  .cookie-modal-content {
    padding: 20px 8px 14px 8px;
  }
}

/* =======================
   ACCESSIBILITY A11Y FOCUS
   ======================= */
a:focus, button:focus, .cta-btn:focus, .cookie-accept:focus, .cookie-reject:focus, .cookie-settings:focus {
  outline: 3px solid var(--hot-pink);
  outline-offset: 3px;
}

/* ================
  UTILITY CLASSES
  ================ */
.mb-0 { margin-bottom: 0 !important; } 
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-20 { padding-top: 20px !important; }

/* Hide visually but keep accessible */
.visually-hidden { 
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px; 
  overflow:hidden; 
  clip:rect(0,0,0,0);
  white-space:nowrap; 
  border:0; 
}

/* =============
   PRINT STYLES
   ============= */
@media print {
  body, html, .container, .content-wrapper {
    background: #fff !important;
    color: #000;
    box-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* =============
   END OF FILE
   ============= */
