/* --------------------------------------------------
   CSS RESET & BASE STYLES
-------------------------------------------------- */
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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #1c232c;
  color: #F7F6F3;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.04em;
  overscroll-behavior-y: none;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #E8C87A;
  text-decoration: none;
  transition: color 0.22s;
  outline: none;
}
a:hover,
a:focus {
  color: #fffde9;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  outline: none;
  border: none;
}
*:focus {
  outline: 2px solid #E8C87A;
  outline-offset: 2px;
}

/* --------------------------------------------------
   BRAND FONTS & HEADINGS
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #E8C87A;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section h1, .section h2 {
  color: #E8C87A;
}
.subheadline, .content-wrapper p, .text-section p {
  font-size: 1.125rem;
  color: #F7F6F3;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
}
strong {
  color: #E8C87A;
  font-weight: bold;
}

/* --------------------------------------------------
   CONTAINER LAYOUTS (FLEXBOX ONLY!)
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(37,53,74, 0.95);
  border-radius: 16px;
  box-shadow: 0 8px 28px 0 rgba(24,27,33,0.18);
}

/* --------------------------------------------------
   NAVIGATION & HEADER
-------------------------------------------------- */
header {
  background: #222835;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #F7F6F3;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.19s, color 0.19s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: #E8C87A;
  color: #222835;
  text-decoration: none;
}
header img {
  width: 162px;
  max-width: 100%;
  height: auto;
  margin-right: 14px;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  margin-left: 16px;
  background: linear-gradient(87deg, #25354A 70%, #E8C87A 120%);
  background-size: 150% 100%;
  background-position: 0 100%;
  color: #F7F6F3;
  border-radius: 8px;
  border: 2px solid #E8C87A;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px 0 rgba(38,36,25,0.09);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #E8C87A;
  color: #222835;
  transform: translateY(-2px) scale(1.036);
  box-shadow: 0 4px 18px 0 rgba(232, 200, 122, 0.14);
  text-decoration: none;
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  background: #293545;
  color: #E8C87A;
  border: 2px solid #E8C87A;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 1.06rem;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.13s;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E8C87A;
  color: #293545;
  border-color: #293545;
  transform: translateY(-2px) scale(1.025);
}

/* --------------------------------------------------
   RESPONSIVE BURGER MENU
-------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #222835;
  color: #E8C87A;
  border: 2px solid #E8C87A;
  border-radius: 8px;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, border 0.17s;
  z-index: 201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E8C87A;
  color: #222835;
  border-color: #222835;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #222835;
  box-shadow: 0 4px 32px 0 rgba(24,27,33,0.35);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.75,.15,.7,1.15);
  z-index: 200;
  opacity: 0.98;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: #E8C87A;
  color: #222835;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 18px 22px 0 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  z-index: 201;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #25354A;
  color: #E8C87A;
}
.mobile-nav {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  display: flex;
  margin: 40px 0 0 34px;
}
.mobile-nav a {
  color: #E8C87A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 10px 6px;
  border-radius: 6px;
  transition: background 0.13s, color 0.11s, transform 0.14s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8C87A;
  color: #25354A;
  text-decoration: none;
  transform: translateX(5px);
}

/* Hide normal nav and show burger on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------------------------------------------
   CARD, GRID & LAYOUT COMPONENTS (FLEXBOX-ONLY)
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #202935;
  border-radius: 14px;
  box-shadow: 0 4px 20px 0 rgba(20,24,31,0.11);
  padding: 32px 26px 26px 26px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 340px;
  gap: 16px;
  border-left: 5px solid #E8C87A;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid,
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/* Feature grid for lists */
.feature-grid {
  flex-direction: row;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-grid li {
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.09rem;
  background: #232c39;
  color: #F7F6F3;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(40,40,42,0.09);
  border-left: 4px solid #E8C87A;
  margin-bottom: 3px;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-right: 5px;
}
.service-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 32px;
}
.service-list li {
  background: #232c39;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(24,27,33,0.11);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  padding: 22px 20px 16px 20px;
  margin-bottom: 3px;
  border-left: 4px solid #E8C87A;
}
.service-list h3 {
  color: #E8C87A;
  font-size: 1.19rem;
  margin-bottom: 8px;
}
.service-list p {
  color: #F7F6F3;
  font-size: 1rem;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #F7F6F3;
}
.text-section ul, .contact-info {
  margin-top: 12px;
}
.text-section li {
  margin-left: 18px;
  margin-bottom: 7px;
  padding-left: 0px;
  color: #E8C87A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  list-style: disc inside;
}
.text-section a {
  color: #E8C87A;
  word-break: break-word;
}
.cta-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 18px;
  gap: 22px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.1rem;
  color: #E8C87A;
}
.contact-info img {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  vertical-align: middle;
}

.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;
  padding: 20px;
  background: #F7F6F3;
  color: #25354A;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(37,53,74,0.09);
  margin-bottom: 20px;
  margin-top: 16px;
  border-left: 5px solid #E8C87A;
  position: relative;
  max-width: 640px;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  font-style: italic;
  color: #25354A;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #222835;
  letter-spacing: 0.02em;
  margin-left: auto;
}
/* Testimonial accessibility: dark text, light bg always */
.testimonial-card {
  background: #F7F6F3;
  color: #25354A;
}
/* --------------------------------------------------
   FEATURE/LIST ITEM
-------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #E8C87A;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #202935;
  padding: 48px 0 26px 0;
  margin-top: 40px;
  box-shadow: 0 -4px 28px 0 rgba(34,40,53,0.14);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 0 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #E8C87A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: #E8C87A;
  color: #25354A;
  text-decoration: none;
}
footer p {
  color: #F7F6F3;
  font-size: 0.98rem;
  margin-top: 12px;
  letter-spacing: 0.02em;
  opacity: 0.77;
}
footer img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: grayscale(20%) brightness(0.96) contrast(1.20);
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #222835;
  color: #F7F6F3;
  padding: 24px 26px 20px 26px;
  box-shadow: 0 -2px 18px 0 rgba(34,40,53,0.19);
  border-top: 2.5px solid #E8C87A;
  z-index: 300;
  animation: cookieSlideUp 0.46s cubic-bezier(.7,.1,.5,1.28);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 400px;
  font-size: 1rem;
  color: #F7F6F3;
  margin-right: 18px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  margin-right: 12px;
  border-radius: 8px;
  border: 2px solid #E8C87A;
  background: #222835;
  color: #E8C87A;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.14s;
}
.cookie-banner .cookie-btn.accept {
  background: #E8C87A;
  color: #222835;
  border-color: #E8C87A;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #F7F6F3;
  color: #25354A;
  border-color: #E8C87A;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 41, 53, 0.94);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalPop 0.35s cubic-bezier(.7,.14,.95,1.14);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.83); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal {
  background: #F7F6F3;
  color: #25354A;
  border-radius: 18px;
  max-width: 430px;
  width: 90vw;
  padding: 38px 26px 28px 26px;
  position: relative;
  box-shadow: 0 8px 38px 0 rgba(32,41,53,0.24);
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal h3 {
  color: #25354A;
  font-size: 1.31rem;
  margin-bottom: 6px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1.09rem;
  color: #25354A;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .toggle {
  width: 34px;
  height: 20px;
  border-radius: 10px;
  background: #E8C87A;
  position: relative;
  margin-right: 12px;
  transition: background 0.16s;
  display: inline-block;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle-switch {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #25354A;
  transition: left 0.18s;
}
.cookie-modal .toggle input:checked + .toggle-switch {
  left: 16px;
  background: #25354A;
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #3e4863;
  opacity: 0.78;
  margin-left: 3px;
}
.category-essential {
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  padding: 10px 18px;
  border-radius: 7px;
  background: #222835;
  border: 2px solid #E8C87A;
  color: #E8C87A;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, border-color 0.15s;
}
.cookie-modal .cookie-btn.accept {
  background: #E8C87A;
  color: #222835;
  border-color: #E8C87A;
}
.cookie-modal .cookie-btn:focus, .cookie-modal .cookie-btn:hover {
  background: #25354A;
  color: #E8C87A;
}
/* Cookie modal close (top right X ) */
.cookie-modal .modal-close {
  position: absolute;
  right: 20px; top: 17px;
  width: 32px;
  height: 32px;
  font-size: 1.6rem;
  background: #E8C87A;
  color: #25354A;
  border-radius: 7px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #25354A;
  color: #E8C87A;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .service-list, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 100vw;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .content-grid, .feature-grid, .card-container, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .service-list li, .feature-grid li {
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    padding: 16px;
    font-size: 0.97rem;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.32rem;
    margin-bottom: 10px;
  }
  .mobile-menu {
    font-size: 1.10rem;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  header .container {
    padding: 10px 3px 9px 7px;
  }
  .section {
    padding: 16px 2px;
    margin-bottom: 24px;
  }
  .testimonial-card {
    padding: 12px 7px;
    font-size: 0.93rem;
  }
}
@media (max-width: 375px) {
  h1 {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------
   INTERACTIVE STATE TRANSITIONS
-------------------------------------------------- */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.14s, border 0.14s, transform 0.13s;
}
.card, .service-list li, .feature-grid li {
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .service-list li:hover, .feature-grid li:hover {
  box-shadow: 0 12px 32px 0 rgba(232,200,122,0.15), 0 2px 8px rgba(20,24,31,0.10);
  transform: translateY(-2px) scale(1.017);
  z-index: 2;
}

/* --------------------------------------------------
   UTILITY CLASSES
-------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.hide { display: none !important; }
.mt-20 { margin-top: 20px; }
.mb-24 { margin-bottom: 24px; }
.my-40 { margin-top: 40px; margin-bottom: 40px; }

/* --------------------------------------------------
   INDUSTRIAL MODERN GENERIC VISUALS
-------------------------------------------------- */
body, .section {
  background-color: #1c232c;
}
.section {
  border: 1.5px solid #343c49;
  background-clip: padding-box;
  /* Subtle metallic look */
  box-shadow: 0 2.5px 10px 0 rgba(37,53,74,0.13), 0 1px 3px rgba(0,0,0,0.10);
}

.card, .service-list li, .feature-grid li {
  border-left: 4px solid #E8C87A;
  background: linear-gradient(95deg, #212b36 71%, #2b3440 100%);
}

hr {
  border: none;
  height: 1px;
  width: 100%;
  background: #303e53;
  opacity: 0.48;
  margin: 28px 0;
}

/* --------------------------------------------------
   END OF FILE
-------------------------------------------------- */
