/* ===========================
   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, 
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: #F4F6F7;
  color: #253D42;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
img {
  max-width: 6%;
  height: auto;
  display: block;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #184D59;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1rem; }
p, li, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(24,77,89,0.03);
}

/* =================
   HEADER / NAVBAR
   ================= */
header {
  background: #fafdfe;
  box-shadow: 0 2px 12px rgba(24,77,89,0.03);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #184D59;
  padding: 8px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
header nav a:hover,
header nav a:focus {
  color: #F2B705;
  border-color: #F2B705;
}
.cta-button {
  background: #184D59;
  color: #fff;
  border: none;
  border-radius: 4em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 34px;
  margin-left: 12px;
  margin-right: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(24,77,89,0.06);
  cursor: pointer;
  outline: none;
  display: inline-block;
  letter-spacing: 0.025em;
}
.cta-button:hover,
.cta-button:focus {
  background: #1E637E;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,77,89,0.10);
}

/* ===========
   MOBILE MENU
   =========== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #184D59;
  cursor: pointer;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1051;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e9f3f7;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24,77,89,0.20),0 0 0 100vw rgba(24,77,89,0.12);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.55,.06,.68,.19);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 24px;
  margin-right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #184D59;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2101;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F2B705;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #184D59;
  padding: 10px 0;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F2B705;
}

/* Burger menu show/hide (Responsive) */
@media (max-width: 1024px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============
   HERO SECTION
   ============= */
.hero {
  background: linear-gradient(110deg, #fafdfe 80%, #E4EBED 100%);
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: none;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #184D59;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.13rem;
  color: #253D42;
  margin-bottom: 8px;
  line-height: 1.6;
  max-width: 610px;
}
.hero .cta-button {
  margin-top: 18px;
}

/* ============
   FEATURES
   ============ */
.features .container {
  padding-top: 0;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
}

.feature-grid,
.product-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
  justify-content: space-between;
}

.feature-item,
.category-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,77,89,0.07);
  padding: 24px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-item img,
.category-item img {
  width: 44px;
  height: 44px;
}
.feature-item:hover, .category-item:hover {
  box-shadow: 0 6px 24px rgba(24,77,89,0.13);
  transform: translateY(-2px) scale(1.01);
}
.feature-item h3, .category-item h3 {
  font-size: 1.18rem;
  color: #184D59;
}
.feature-item p, .category-item p {
  color: #50636D;
  font-size: 1rem;
}

.values-list, .accreditations, .shop-benefits, .service-benefits, .contact-benefits, .rental-benefits, .consulting-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 32px;
}
.values-list li, .shop-benefits li, .service-benefits li, .contact-benefits li, .rental-benefits li, .consulting-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #184D59;
}
.values-list b, .shop-benefits b, .service-benefits b, .contact-benefits b, .rental-benefits b {
  color: #184D59;
  font-weight: 700;
}
.accreditations li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.accreditations img {
  width: 28px;
  height: 28px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px auto 0 auto;
  justify-content: center;
}
.category-nav a {
  color: #184D59;
  background: #F4F6F7;
  border-radius: 24px;
  padding: 8px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.18s, color 0.22s;
}
.category-nav a:hover, .category-nav a:focus {
  background: #F2B705;
  color: #184D59;
}

/* ===========
   CARD LAYOUT
   =========== */
.card-container, .card-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(24,77,89,0.05);
  padding: 24px 20px 20px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(24,77,89,0.10);
  transform: translateY(-2px) scale(1.015);
}
.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;
  margin-bottom: 20px;
}

/* =============
   SERVICES LIST
   ============= */
.service-list, .equipment-list ul, .service-options ul, .contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  font-size: 1rem;
}
.service-list li, .equipment-list li, .service-options li, .contact-details li {
  background: #F9FBFC;
  padding: 18px 18px 18px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,77,89,0.03);
  color: #184D59;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-list a {
  background: #184D59;
  color: #fff;
  padding: 7.5px 20px;
  border-radius: 22px;
  font-size: 0.98rem;
  transition: background 0.17s;
  margin-left: 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.service-list a:hover, .service-list a:focus {
  background: #F2B705;
  color: #184D59;
}

/* ==============
   TESTIMONIALS
   =============*/
.testimonials .container {
  padding-top: 0;
}
.testimonial-slider {
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,77,89,0.07);
  padding: 20px 32px;
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
  color: #184D59;
  font-size: 1rem;
  line-height: 1.6;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card p {
  color: #184D59;
  font-style: italic;
  font-size: 1.04rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #253D42;
  margin-top: 10px;
}
.testimonial-card strong {
  font-weight: 700;
  color: #184D59;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(24,77,89,0.13);
  transform: scale(1.015);
}

/* =============
   CONTACT
   ============= */
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details ul {
  margin-top: 10px;
}
.contact-details li {
  gap: 13px;
  font-size: 1.06rem;
  color: #184D59;
  align-items: center;
  border-bottom: 1px solid #E4EBED;
  padding-bottom: 5px;
  background: none;
  box-shadow: none;
}
.contact-details img {
  width: 21px;
  height: 21px;
  margin-right: 7px;
}
.map, .opening-hours {
  margin-top: 18px;
  color: #184D59;
  font-size: 1rem;
}
.contact-cta {
  margin-top: 18px;
}

/* ===============
   TABLES
   ===============*/
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(24,77,89,0.03);
  margin: 20px 0;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.98rem;
}
th {
  background: #E4EBED;
  color: #184D59;
  font-weight: 700;
}
td {
  color: #253D42;
  border-bottom: 1px solid #E4EBED;
}
tr:last-child td {
  border-bottom: none;
}

/* ===============
   FOOTER
   ===============*/
footer {
  background: #fafdfe;
  border-top: 1px solid #E4EBED;
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 28px;
}
.footer-menu {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-menu a {
  color: #184D59;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F2B705;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-info img {
  width: 44px;
  height: 44px;
}
.brand-info span {
  font-size: 1rem;
  color: #184D59;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  padding: 5px;
  transition: background 0.14s;
  border-radius: 50%;
}
.social-links a:hover, .social-links a:focus {
  background: #F2B705;
}
.social-links img {
  width: 24px;
  height: 24px;
  display: block;
}

/* ===============
   TEXT SECTIONS
   ===============*/
.text-section {
  background: none;
  margin-bottom: 18px;
}
.text-section p {
  font-size: 1.05rem;
  color: #253D42;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===============
   OTHER LAYOUTS
   ===============*/
.benefit-icons, .repair-process, .rental-process-steps {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.benefit-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4F6F7;
  border-radius: 18px;
  padding: 10px 18px;
  color: #184D59;
  font-weight: 500;
  font-size: 1rem;
}

.service-details ul, .repair-process ol, .rental-process-steps ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
}
.pricing-table, .rental-pricing-table, .pricing-overview {
  margin-top: 18px;
}

.warranty-info {
  background: #fafdfe;
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(24,77,89,0.04);
  margin-top: 22px;
}
.warranty-info h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.warranty-info p {
  margin-bottom: 0;
  font-size: 1.03rem;
}
.opening-hours h3 {
  margin-bottom: 6px;
  font-size: 1.09rem;
}

/* ==================
   COOKIE CONSENT BAR
   ================== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 14px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 20px rgba(24,77,89,0.18);
  border-radius: 18px;
  padding: 22px 30px 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  z-index: 9999;
  animation: fadeInUp .40s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 9px 25px;
  border-radius: 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.15s;
}
.cookie-accept {
  background: #184D59;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1E637E;
  color: #fff;
}
.cookie-reject {
  background: #F4F6F7;
  color: #184D59;
  border: 1px solid #ccc;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #E4EBED;
}
.cookie-settings {
  background: transparent;
  color: #184D59;
  text-decoration: underline;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(24,77,89,0.20);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(24,77,89,0.22);
  max-width: 400px;
  width: 96%;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
  animation: fadeInUp 0.30s;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #184D59;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #184D59;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #184D59;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover { color: #F2B705; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===================================
   MEDIA QUERIES & RESPONSIVE LAYOUTS
   =================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero h1 {
    font-size: 2.05rem;
  }
  .features .feature-grid,
  .product-categories-grid {
    gap: 18px;
  }
  .feature-item,
  .category-item {
    padding: 18px 12px 15px 12px;
    min-width: 152px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .section {
    margin-bottom: 48px;
    padding: 22px 6px;
    border-radius: 10px;
  }
  .hero .container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .hero .content-wrapper {
    padding-left: 0; padding-right: 0;
    align-items: center;
    text-align: center;
  }
  .feature-grid, .product-categories-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-item,
  .category-item {
    min-width: 0;
    width: 100%;
  }
  .service-list li, .equipment-list li, .service-options li, .contact-details li {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 9px 14px 9px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: none;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 17px 14px 17px 12px;
    left: 2vw;
    right: 2vw;
    bottom: 6px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .footer-menu {
    gap: 11px;
  }
  .brand-info {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    font-size: 0.97rem;
  }
}

/* ===========
   UTILITIES
   =========== */
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Accessibility: Outline for keyboard navigation */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #F2B705;
  outline-offset: 2px;
}

/* Hide only visually, not from screen readers */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* ================================
   Brand-specific Color Variables
   ================================ */
:root {
  --brand-primary: #184D59;
  --brand-secondary: #F2B705;
  --brand-accent: #F4F6F7;
  --brand-shadow: 0 2px 12px rgba(24,77,89,0.045);
  --brand-font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --brand-font-body: 'Roboto', Arial, sans-serif;
}

/* ===========
   PRINT BASIC
   =========== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer {
    display: none !important;
  }
  body, .container, .section {
    background: #fff !important;
    color: #184D59 !important;
  }
}
