/* --------------------------------------------------
   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,
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: #23262A;
  color: #E8EBEF;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #A06306;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B88220;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px dashed #B88220;
  outline-offset: 2px;
}

/* --------------------------------------------------
   VARIABLES (FALLBACKS included)
-------------------------------------------------- */
:root {
  --color-primary: #224267;
  --color-secondary: #E8EBEF;
  --color-accent: #A06306;
  --color-dark: #23262A;
  --color-metal: #49505A;
  --color-light: #FFFFFF;
  --shadow-main: 0 4px 24px rgba(24,29,33,0.2);
  --shadow-mid: 0 2px 8px rgba(34,66,103,0.14);
  --rounded: 7px;
}

/* --------------------------------------------------
   FONTS (Industrial, Modern)
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E8EBEF;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  line-height: 1.1;
  color: #E8EBEF;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #E8EBEF;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
}
p, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #CED6DD;
  margin-bottom: 14px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: var(--color-accent);
}
em {
  color: var(--color-accent);
  font-style: italic;
}

/* --------------------------------------------------
   LAYOUT: CONTAINER & FLEX SPACING
-------------------------------------------------- */
.container {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23262A;
  border-radius: var(--rounded);
  box-shadow: var(--shadow-main);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #20232A;
  border-radius: var(--rounded);
  box-shadow: var(--shadow-mid);
  position: relative;
  padding: 24px 20px 18px 20px;
  min-width: 270px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 1.5px solid #313943;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(34,66,103,0.24);
  transform: translateY(-3px) scale(1.012);
  border-color: var(--color-accent);
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23272F;
  padding: 24px 18px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow-mid);
  min-width: 220px;
  border-left: 4px solid var(--color-metal);
  transition: border-color 0.2s;
}
.feature-item:hover {
  border-left: 4px solid var(--color-accent);
}
.feature-item h3 {
  color: var(--color-accent);
  font-size: 1.13rem;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.map-fake {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #222831;
  border-radius: var(--rounded);
  padding: 12px 20px;
  margin-top: 12px;
  color: #B2B9C3;
  font-size: 0.97rem;
}

/* --------------------------------------------------
   HEADER, NAVBAR & CTA
-------------------------------------------------- */
header {
  background: #23262A;
  border-bottom: 1.5px solid #292E39;
  box-shadow: 0 6px 24px rgba(35,66,103,0.09);
  padding: 0;
  position: sticky;
  top: 0; z-index: 42;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 14px;
  padding: 18px 0;
}
header img {
  height: 44px;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #E8EBEF;
  font-weight: 600;
  padding: 7px 6px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: #313943;
  color: var(--color-accent);
}
.cta-primary {
  display: inline-block;
  padding: 13px 26px;
  background: var(--color-accent);
  color: var(--color-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 16px rgba(160,99,6,0.10);
  transition: background 0.14s, color 0.18s, box-shadow 0.22s;
  border: 2px solid transparent;
  margin-left: 10px;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B88220;
  color: #222;
  border-color: #E8EBEF;
  box-shadow: 0 4px 24px rgba(186,130,32,0.12);
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
  background: linear-gradient(98deg, #23262A 83%, #224267 100%);
  border-radius: var(--rounded);
  box-shadow: var(--shadow-main);
  margin-top: 26px;
  margin-bottom: 52px;
}
.hero .container {
  padding: 48px 18px 54px 18px;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  color: #FFF;
  font-size: 2.7rem;
  letter-spacing: 0.01em;
}
.hero p {
  color: #CED6DD;
  font-size: 1.23rem;
  max-width: 550px;
}

/* --------------------------------------------------
   TESTIMONIALS & CARDS
-------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F5F7;
  color: #23262A;
  border-radius: var(--rounded);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(34,66,103,0.09);
  border-left: 5px solid var(--color-accent);
}
.testimonial-card p {
  flex: 1 1 auto;
  color: #23262A;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
}
.testimonial-card strong {
  color: #224267;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 1.19rem;
  color: #cab34c;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #23262A;
  border-top: 2px solid #292E39;
  padding: 34px 0 14px 0;
  margin-top: 54px;
}
main {
  word-break: break-word;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
}
footer nav {
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #B2B9C3;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover {
  color: #B88220;
}
footer img {
  height: 38px;
  margin-bottom: 9px;
}
footer .text-section {
  color: #B2B9C3;
  font-size: 0.99rem;
  margin-bottom: 8px;
}

/* --------------------------------------------------
   BUTTONS & INTERACTIONS
-------------------------------------------------- */
button, .cta-primary, .cookie-btn {
  transition: background 0.18s, color 0.15s, box-shadow 0.13s;
}
button:active, .cta-primary:active {
  transform: scale(0.97);
}

/* --------------------------------------------------
   FORMS (if present)
-------------------------------------------------- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 9px 13px;
  border: 1.5px solid #49505A;
  border-radius: var(--rounded);
  background: #292E39;
  color: #E8EBEF;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  background: #23262A;
}
label {
  display: block;
  margin-bottom: 5px;
  color: #B88220;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --------------------------------------------------
   FLEXBOX CLASSES FOR LAYOUT
-------------------------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

/* --------------------------------------------------
   MOBILE MENU (BURGER NAV)
-------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 200;
  background: var(--color-accent);
  color: var(--color-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2.1rem;
  border: 2px solid #FFF;
  box-shadow: 0 2px 16px rgba(160,99,6,0.09);
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.21s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #B88220;
  color: #222;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #1B1F23;
  z-index: 300;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.77,.1,.44,1.01);
  box-shadow: 0 4px 52px rgba(35,66,103,0.24);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 8px 0;
  background: #23262A;
  color: var(--color-light);
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: 0 2px 16px rgba(34,66,103,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B88220;
  color: #1B1F23;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 32px 0 36px;
}
.mobile-nav a {
  color: #E8EBEF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.23rem;
  letter-spacing: 0.03em;
  padding: 11px 0;
  border-radius: 7px;
  transition: background 0.16s, color 0.13s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #313943;
  color: #B88220;
}

@media (max-width: 1024px) {
  header .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

@media (max-width: 890px) {
  .feature-grid, .card-grid, .features, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 98%;
    padding: 0 8px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .container {
    padding: 28px 7px 30px 7px;
  }
  .hero {
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.11rem;
    margin-bottom: 9px;
  }
  .hero .container {
    padding: 16px 2px 18px 2px;
  }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100%;
  background: #23262A;
  color: #E8EBEF;
  padding: 22px 10px 18px 10px;
  z-index: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 -2px 14px rgba(34,66,103,0.13);
}
.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 1rem;
  color: #E8EBEF;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 18px;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-light);
  border: 2px solid var(--color-accent);
}
.cookie-btn.accept:hover {
  background: #B88220;
  color: #23262A;
}
.cookie-btn.reject {
  background: #23262A;
  color: var(--color-secondary);
  border: 2px solid #424953;
}
.cookie-btn.reject:hover {
  background: #313943;
  color: var(--color-secondary);
}
.cookie-btn.settings {
  background: #224267;
  color: #E8EBEF;
  border: 2px solid #224267;
}
.cookie-btn.settings:hover {
  background: #B88220;
  color: #23262A;
  border-color: #B88220;
}

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,32,35,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #23262A;
  border-radius: 14px;
  box-shadow: 0 10px 38px rgba(34,66,103,0.21);
  max-width: 420px;
  width: 93vw;
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  color: #E8EBEF;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal__close {
  background: #313943;
  color: #FFF;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.5rem;
  border: none;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #B88220;
  color: #23262A;
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-pref-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid #313943;
}
.cookie-pref-group:last-child {
  border-bottom: none;
}
.cookie-pref-group label {
  color: #E8EBEF;
  margin: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-pref-group input[type=checkbox] {
  accent-color: var(--color-accent);
  width: 19px;
  height: 19px;
}
.cookie-pref-group input[disabled] {
  accent-color: #909491;
  cursor: not-allowed;
  background: #282D34;
}

.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 510px) {
  .cookie-modal {
    padding: 22px 8px 14px 8px;
    max-width: 98vw;
  }
}

/* --------------------------------------------------
   UTILITY & MISC
-------------------------------------------------- */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

hr {
  border: none;
  border-bottom: 1px solid #2C323A;
  margin: 28px 0;
}

/* Decorative metallic accent line */
.metal-accent {
  display: block;
  height: 3px;
  width: 36px;
  background: linear-gradient(90deg, #A2A8B0 30%, #B88220 80%);
  margin: 0 0 16px 0;
  border-radius: 2px;
}

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

/* --------------------------------------------------
   SCROLLBAR INDUSTRIAL MODERN STYLE
-------------------------------------------------- */
html {
  scrollbar-color: #49505A #23262A;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #23262A;
}
body::-webkit-scrollbar-thumb {
  background: #49505A;
  border-radius: 4px;
  border: 2px solid #23262A;
}

/* --------------------------------------------------
   TRANSITIONS FOR MICRO-INTERACTIONS
-------------------------------------------------- */
.section, .card, .feature-item, .cookie-banner, .cookie-modal, .hero {
  transition: box-shadow 0.23s, border 0.16s, background 0.16s;
}

/* --------------------------------------------------
   INDUSTRIAL MODERN AESTHETIC - COLORS & EFFECTS
-------------------------------------------------- */
.section, .card, .feature-item, .hero {
  border-radius: 9px;
  background-color: #23262A;
  border: 1.5px solid #313943;
  box-shadow: var(--shadow-main);
}

/* Metallic accent for headers */
h1, h2, h3 {
  position: relative;
}
h1:before, h2:before, h3:before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, #A2A8B0 35%, #B88220 90%);
}

@media (max-width: 768px) {
  h1:before, h2:before, h3:before {
    margin-bottom: 4px;
    width: 22px;
    height: 3px;
  }
}

/* --------------------------------------------------
   END OF CSS
-------------------------------------------------- */
