/* ------- CSS RESET & BASE ------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
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,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #1A2428;
  color: #F3F3F3;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #C0A672;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F3F3F3;
  text-decoration: underline;
}
button, .button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  background: #C0A672;
  color: #22333B;
  box-shadow: 0 3px 12px rgba(34, 51, 59, 0.12);
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.button-primary:hover, button:hover, .button-primary:focus, button:focus {
  background: #A38755;
  color: #F3F3F3;
  box-shadow: 0 6px 24px rgba(34, 51, 59, 0.25);
  outline: none;
}

/* HEADINGS & TYPO */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #F3F3F3;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #F3F3F3;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #C0A672;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote {
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 10px;
}
blockquote {
  background: #F3F3F3;
  color: #22333B;
  font-style: italic;
  border-left: 4px solid #C0A672;
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* --------- LAYOUT CONTAINERS / FLEX ----------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.card-container,
.card-grid,
.feature-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #22333B;
  border: 1px solid #2F3E44;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(34, 51, 59, 0.10);
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 36px rgba(34, 51, 59, 0.16);
}
.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: 24px 24px;
  border-radius: 12px;
  background: #F3F3F3;
  color: #22333B;
  box-shadow: 0 3px 18px rgba(192,166,114,0.12);
  margin-bottom: 24px;
  border-left: 5px solid #C0A672;
  position: relative;
  min-width: 250px;
}
.testimonial-card blockquote {
  background: transparent;
  color: #22333B;
  padding-left: 0;
  padding-right: 0;
  border-left: 0;
  font-style: italic;
  font-size: 1.07rem;
  letter-spacing: 0.1px;
}
.testimonial-card span {
  font-weight: bold;
  color: #22333B;
  font-size: 0.99rem;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

/* --------- HEADER & NAV --------- */
header {
  width: 100%;
  background: #1A2428;
  border-bottom: 1.5px solid #2F3E44;
  box-shadow: 0 2px 14px rgba(34, 51, 59, 0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  z-index: 1010;
}
header .container,
header .content-wrapper {
  flex-direction: row;
  align-items: center;
}
header a img {
  height: 36px;
  margin: 12px 0 12px 10px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  color: #F3F3F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover,.main-nav a:focus {
  background: #2F3E44;
  color: #C0A672;
}
/* Hide mobile menu elements on desktop */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}

/* ------- HERO section --------- */
main section:first-child .content-wrapper {
  gap: 18px;
  text-align: left;
  align-items: flex-start;
}

/* -------- FEATURE/USP GRID --------- */
.feature-grid > div {
  background: #232A2F;
  border-radius: 10px;
  padding: 26px 18px;
  min-width: 210px;
  border: 1.4px solid #2F3E44;
  box-shadow: 0 2px 8px rgba(34, 51, 59, 0.08);
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover {
  border: 1.5px solid #C0A672;
  box-shadow: 0 8px 24px rgba(192,166,114,0.08);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(42%) contrast(1.2);
}

/* --------- FOOTER --------- */
footer {
  background: #232A2F;
  color: #F3F3F3;
  border-top: 2px solid #2F3E44;
  font-size: 1rem;
  margin-top: 40px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 34px 20px 20px 20px;
}
.footer-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #C0A672;
  font-size: 0.96rem;
  transition: color 0.15s;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #F3F3F3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.footer-contact img {
  height: 42px;
  margin-bottom: 8px;
}
footer small {
  margin-top: 8px;
  color: #AAA8A2;
  font-size: 0.94rem;
}

/* --------- COOKIE CONSENT BANNER --------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2000;
  background: #1A2428;
  color: #F3F3F3;
  border-top: 2px solid #C0A672;
  box-shadow: 0 -4px 24px rgba(34,51,59,0.27);
  padding: 22px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: banner-slide-in 0.6s cubic-bezier(0.7,0,0.3,1);
}
@keyframes banner-slide-in {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner .banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-consent-banner .cookie-link {
  color: #C0A672;
  text-decoration: underline;
  font-size: 0.97rem;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: 0.98rem;
  border-radius: 7px;
  background: #22333B;
  color: #F3F3F3;
  border: 1.5px solid #C0A672;
  transition: background 0.15s, color 0.15s;
  margin-right: 4px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #C0A672;
  color: #22333B;
}
.cookie-btn.accept {
  background: #C0A672;
  color: #22333B;
  border: none;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A38755;
  color: #F3F3F3;
}
/* Cookie preferences modal popup */
.cookie-modal {
  position: fixed;
  z-index: 2100;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  max-width: 98vw;
  width: 440px;
  background: #232A2F;
  color: #F3F3F3;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(34,51,59,0.22);
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: modal-fade-in 0.38s cubic-bezier(0.7,0,0.3,1);
}
@keyframes modal-fade-in {
  from{opacity:0; transform:translate(-50%,-50%) scale(0.94)}
  to{opacity:1; transform:translate(-50%,-50%) scale(1)}
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #C0A672;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  position: relative;
  width: 46px;
  height: 24px;
  border-radius: 16px;
  background: #2F3E44;
  transition: background 0.18s;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 46px;
  height: 24px;
  position: absolute;
  cursor: pointer;
}
.cookie-modal .toggle .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #C0A672;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .toggle input:checked ~ .slider {
  left: 24px;
  background: #A38755;
}
.cookie-modal .toggle.disabled {
  pointer-events: none;
  opacity: 0.7;
  background: #C0A672;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  color: #F3F3F3;
  font-size: 24px;
  cursor: pointer;
  border: none;
  z-index: 1;
}
.cookie-modal .modal-close:hover {
  color: #C0A672;
}

/* -------- MOBILE NAV / BURGER ------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #C0A672;
  border: none;
  font-size: 2rem;
  margin-left: 18px;
  margin-right: 12px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1201;
  border-radius: 8px;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #232A2F;
  color: #F3F3F3;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1A2428;
  z-index: 2001;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  box-shadow: 4px 0 32px rgba(34,51,59,0.18);
  padding-top: 22px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 22px;
  margin-bottom: 16px;
  background: none;
  border: none;
  color: #C0A672;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 7px 12px;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232A2F;
  color: #F3F3F3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  gap: 12px;
  padding-left: 34px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #F3F3F3;
  font-size: 1.34rem;
  padding: 10px 0;
  margin-bottom: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C0A672;
  background: none;
}

/* ---- Utility: Hide on mobile/desktop ---- */
.hide-desktop {
  display: none !important;
}
.hide-mobile {
  display: block !important;
}

/* --------- RESPONSIVE DESIGN (MOBILE FIRST) --------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 992px) {
  h1 { font-size: 2.05rem;}
  h2 { font-size: 1.48rem; }
  .feature-grid, .card-grid, .content-grid {
    gap: 16px;
  }
  .footer-nav {gap: 7px;}
}
@media (max-width: 820px) {
  .container {
    padding: 0 7px;
  }
  .feature-grid > div {
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 0;
    min-height: 56px;
  }
  header a img {
    height: 30px;
    margin: 12px 0 12px 10px;
  }
  .content-wrapper,
  .text-section {
    padding: 0 0 0 0;
    gap: 13px;
  }
  .section {
    padding: 32px 6px;
    margin-bottom: 34px;
  }
  .feature-grid, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-grid > div,
  .card {
    min-width: 80vw;
    padding: 12px 7px;
  }
  .testimonial-card {
    padding: 18px 11px;
    min-width: unset;
  }
  .footer-contact {
    font-size: 0.96rem;
  }
  .footer-contact img {
    height: 30px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 2px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
}

/* ---- Interaction styling ---- */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  background: #232A2F;
  border: 1.2px solid #C0A672;
  border-radius: 6px;
  color: #F3F3F3;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  margin-bottom: 18px;
  transition: border 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 6px rgba(34,51,59,0.07);
}
input:focus, textarea:focus {
  outline: none;
  border-color: #A38755;
  box-shadow: 0 0 0 2px #C0A67233;
}
::placeholder {
  color: #949B9C;
  opacity: 1;
}

/* Accessibility: Focus-visible */
a:focus-visible, button:focus-visible {
  outline: 2.5px solid #C0A672;
  outline-offset: 1.5px;
}

/* ------ micro-interactions & subtle transitions ------ */
.card, .feature-grid > div, .button-primary, button, .footer-nav a, .main-nav a, .testimonials {
  transition: box-shadow 0.18s, transform 0.14s, border 0.15s, background 0.14s, color 0.14s;
}

/* ------- You may add the cookie banner/modal HTML with js ---- */

/* --------- Hide print elements that should be screen-only --------- */
@media print {
  .cookie-consent-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
