/* --- 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafafa;
  transition: background 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #1D3C4A;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #BA6608;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #181818;
  margin-bottom: 16px;
  line-height: 1.16;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #202020;
  margin-bottom: 12px;
  line-height: 1.23;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.28;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #282828;
}
.lead {
  font-size: 1.25rem;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 32px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #232323;
}
strong {
  font-weight: 700;
}

/* --- LAYOUT CLASSES --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  flex: 1 1 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(30, 30, 30, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 5vw;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(30, 30, 30, 0.02);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  min-width: 240px;
  flex: 1 0 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.ratings-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
  background: #f1f1f1;
  color: #212121;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 1.1rem;
}
.ratings-summary li {
  margin-right: 24px;
  margin-bottom: 6px;
}
@media (max-width: 600px) {
  .ratings-summary {
    flex-direction: column;
    gap: 14px;
    font-size: 1rem;
  }
  .ratings-summary li {
    margin-right: 0;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* --- HEADER AND NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 18px 0 rgba(30,30,30,0.04);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo-link img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.24s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #BA6608;
}
.main-nav a.active::after, .main-nav a:focus::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #BA6608;
  border-radius: 6px;
  margin: 6px auto 0 auto;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

.button.primary,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  background: #181818;
  color: #fafafa;
  border-radius: 7px;
  border: none;
  padding: 12px 28px;
  margin-left: 18px;
  transition: background 0.32s, color 0.32s, box-shadow 0.2s;
  box-shadow: 0 3px 20px 0 rgba(20, 20, 20, 0.04);
  position: relative;
  outline: none;
  min-width: 148px;
}
.button.primary:hover, .button.primary:focus {
  background: #BA6608;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(32,32,32,0.15);
}
.button.secondary {
  background: #f5f5f5;
  color: #232323;
  border: 1px solid #d2d2d2;
}
.button.secondary:hover, .button.secondary:focus {
  background: #181818;
  color: #fff;
  border-color: #181818;
}
@media (max-width: 900px) {
  .button.primary {
    margin-left: 0;
    min-width: 132px;
    padding: 10px 18px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 120;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #181818;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  box-shadow: 0 2px 12px rgba(30,30,30,0.07);
  align-items: center;
  justify-content: center;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus{
  background: #BA6608;
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 18, 18, 0.97);
  box-shadow: 0 0 60px 24px rgba(20,20,20,0.18);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.55,.06,.27,1.15);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  font-size: 2rem;
  color: #fff;
  border: none;
  z-index: 2120;
  padding: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.19s, background 0.19s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #BA6608;
  background: #242424;
  border-radius: 50%;
}
.mobile-nav {
  margin-top: 78px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100vw;
  padding-left: 8vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f8f8f8;
  letter-spacing: 0.01em;
  padding: 2px 0;
  display: block;
  transition: color 0.21s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #BA6608;
  background: none;
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- SECTION/CARD/TESTIMONIAL  --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(40,40,40,0.06);
  font-size: 1.05rem;
  color: #191919;
  margin-bottom: 20px;
  min-width: 220px;
  border-left: 4px solid #181818;
  transition: box-shadow 0.16s, border-color 0.22s;
  position: relative;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 4px solid #BA6608;
  box-shadow: 0 8px 34px 0 rgba(26,26,26,0.13);
}
.testimonial-card p {
  color: #181818;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #222;
}

/* --- FOOTER --- */
footer {
  background: #181818;
  color: #f6f6f6;
  padding: 34px 0 22px 0;
  font-size: 1rem;
  letter-spacing: 0.005em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 1160px;
  border-top: 1px solid #25252522;
  padding-top: 10px;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: #eaeaea;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #BA6608;
}
footer p {
  margin-bottom: 0;
  font-size: 0.98rem;
  opacity: 0.84;
}
@media (max-width: 600px) {
  footer .container {
    padding: 0 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

/* --- MAP PLACEHOLDER (CONTACT) --- */
.map-placeholder {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 14px 18px;
  border-radius: 10px;
  gap: 12px;
  margin: 10px 0 0 0;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
}

/* --- LISTS --- */
ul {
  margin-bottom: 18px;
  margin-top: 8px;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 34px;
  position: relative;
  color: #191919;
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1D3C4A;
  position: absolute;
  left: 14px; top: 11px;
}
ol {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-left: 6px;
}
ol li {
  padding-left: 32px;
  list-style: decimal inside;
  color: #191919;
}
ol li::before {
  display: none;
}
.text-section ul li::before {
  background: #BA6608;
}
.text-section ul li {
  color: #191919;
  font-size: 1rem;
  font-weight: 400;
}
/* Remove custom dots from icon lists */
.content-wrapper ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: auto;
}
.content-wrapper ul li {
  padding-left: 38px !important;
  position: relative;
  min-height: 34px;
}
.content-wrapper ul li strong {
  color: #222;
  font-weight: 600;
}

/* --- COOKIES CONSENT --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3500;
  background: #212121;
  color: #f7f7f7;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 26px 18px 22px 18px;
  box-shadow: 0 -2px 38px 0 rgba(20,20,20,0.22);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  animation: slideInUp 0.5s cubic-bezier(.34,2,.46,.83);
}
@keyframes slideInUp {
  from { 
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-consent-banner .cookie-message {
  max-width: 360px;
  font-size: 1.02rem;
  color: #ededed;
  margin-bottom: 10px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  background: #f7f7f7;
  color: #191919;
  transition: background 0.18s, color 0.18s;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #BA6608;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover,
.cookie-consent-banner .cookie-btn.accept:focus {
  background: #1D3C4A;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #424242;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject:hover,
.cookie-consent-banner .cookie-btn.reject:focus {
  background: #BA6608;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #f7f7f7;
  color: #191919;
  border: 1px solid #aaa;
}
.cookie-consent-banner .cookie-btn.settings:hover,
.cookie-consent-banner .cookie-btn.settings:focus {
  background: #181818;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    padding: 21px 8px 17px 8px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-btns {
    gap: 7px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 3998;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(20,20,20,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  box-shadow: 0 12px 80px 0 rgba(30,30,30,0.10);
  padding: 38px 26px 28px 26px;
  max-width: 420px;
  width: 90vw;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalZoom 0.25s;
}
@keyframes modalZoom {
  from {
    opacity: 0.6;
    transform: scale(0.84);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal h2 {
  color: #222;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-category label {
  font-weight: 500;
  color: #202020;
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: #ccc;
  border-radius: 24px;
  position: relative;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px;
  height: 20px;
  background: #f7f7f7;
  border-radius: 50%;
  transition: left 0.19s, background 0.19s;
  box-shadow: 0 1px 5px #bbb1;
}
.cookie-toggle input:checked + .slider {
  left: 20px;
  background: #BA6608;
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.42 !important;
}
.cookie-modal .modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions .cookie-btn {
  min-width: 98px;
  padding: 8px 16px;
}

/* --- GENERAL FORM STYLES --- */
input[type="text"],
input[type="email"],
textarea {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  color: #212121;
  transition: border-color 0.18s;
}
input:focus, textarea:focus {
  border-color: #BA6608;
}

/* --- ANIMATION CLASSES FOR CONTENT --- */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- MISC -- DARK/LIGHT BACKGROUND VARIANTS --- */
.bg-dark {
  background: #181818 !important;
  color: #fafafa !important;
}
.bg-light {
  background: #fff !important;
  color: #141414 !important;
}
.bg-accent {
  background: #BA6608 !important;
  color: #fff !important;
}

/* --- SHADOWS --- */
.shadow {
  box-shadow: 0 8px 32px 0 rgba(40,40,40,0.13);
}

/* --- HELPER CLASSES / SPACING --- */
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-2 { margin-top: 16px !important; }

/* --- RESPONSIVE --- */
@media (max-width: 1160px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 6px;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.5rem;
  }
  .lead {
    font-size: 1.11rem;
  }
}
@media (max-width: 600px) {
  .card {
    padding: 15px 10px;
    min-width: 170px;
  }
  .testimonial-card {
    padding: 14px 9px;
    border-radius: 10px;
  }
  .section {
    padding: 18px 2vw;
  }
}

/* --- SCROLLBAR STYLE for CHROME --- */
::-webkit-scrollbar {
  width: 11px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 7px;
}

/* --- HIGHLIGHT BRAND ACCENTS --- */
.accent {
  color: #BA6608;
}

/* --- VISIBILITY UTILITIES --- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* END OF STYLE.CSS */
