/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #191E23;
  color: #EAECEC;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  /* Metallic overlay for subtle industrial style */
  background-image: linear-gradient(135deg, rgba(23,94,139,0.07) 0%, rgba(72,184,208,0.04) 100%);
}

/* FONT IMPORTS (for local development, include via <link> in HTML) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Baloo+2:700&display=swap');

h1, h2, h3, h4, h5, h6 {
  color: #FFF7E3;
  font-family: 'Baloo 2', 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(23, 94, 139, 0.25);
}

h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

p, ul, ol, li, blockquote {
  color: #D3D8DB;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #FFF7E3;
  font-weight: 600;
}
blockquote {
  border-left: 4px solid #48B8D0;
  background: rgba(25,30,35,0.85);
  padding: 16px 24px;
  margin: 20px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: #AFF7EF;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(23,94,139,0.08);
}
a {
  color: #48B8D0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF7E3;
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  /* A bit more breathing space for industrial/urban feel */
  box-sizing: border-box;
}

/* HEADER/NAVIGATION */
header {
  background: #1D252B;
  box-shadow: 0 4px 16px rgba(23,94,139,0.07);
  border-bottom: 2px solid #22313D;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 60px;
  gap: 18px;
}
header img {
  height: 46px;
  min-width: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #EAECEC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #48B8D0;
  border-radius: 2px;
  transition: all 0.22s cubic-bezier(.68,.28,.43,1.1);
  transform: translateX(-50%);
}
.main-nav a:hover, .main-nav a:focus {
  color: #48B8D0;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg,#175E8B 85%, #48B8D0 140%);
  color: #FFF7E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(72,184,208,0.14);
  border: 2px solid #1A416B;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, border-color 0.2s;
  letter-spacing: .03em;
  margin-left: 10px;
  outline: none;
  text-shadow: 0 2px 7px rgba(23,94,139,0.16);
}
.btn-primary:hover, .btn-primary:focus {
  background: #1D252B;
  color: #48B8D0;
  border-color: #48B8D0;
  box-shadow: 0 2px 16px rgba(72,184,208,0.22);
}

/* HAMBURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #48B8D0;
  font-size: 2rem;
  line-height: 1;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #22313D;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,27,31,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,.28,.43,1.1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF7E3;
  font-size: 2.1rem;
  padding: 20px 24px 16px 18px;
  align-self: flex-end;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #48B8D0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 18px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #FFF7E3;
  font-size: 1.2rem;
  padding: 14px 0 6px 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: color .14s;
  border-left: 4px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #48B8D0;
  border-left: 4px solid #48B8D0;
  background: rgba(23,94,139,0.07);
}

/* RESPONSIVE HEADER NAVIGATION */
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 9px;
  }
  .btn-primary {
    margin-left: 0;
    margin-top: 8px;
  }
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: 6px;
  }
  .btn-primary {
    display: none;
  }
}
@media (max-width: 490px) {
  header img { height: 40px; }
}

/* MAIN STRUCTURE & UNIVERSAL LAYOUTS */
main {
  min-height: 60vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(21,28,33,0.78);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(23,94,139,0.09);
  transition: background 0.26s;
}
.container > .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222B33;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(23,94,139,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  transition: box-shadow 0.21s, transform 0.21s, border .15s;
  border: 1.5px solid #294E65;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(72,184,208,0.21) ;
  transform: translateY(-4px) scale(1.022);
  border-color: #48B8D0;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF7E3;
  color: #1D252B;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(23,94,139,0.09);
  margin-bottom: 20px;
  border-left: 6px solid #48B8D0;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card p {
  color: #1D252B;
  font-weight: 500;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #175E8B;
}
.testimonial-card div {
  font-size: 0.98rem;
  color: #555B60;
}
.rating-summary {
  margin-top: 26px;
  color: #FFF7E3;
  background: #175E8B;
  border-radius: 9px;
  font-weight: 600;
  padding: 16px 28px;
  text-align: center;
  box-shadow: 0 2px 9px rgba(23,94,139,0.11);
  letter-spacing: .02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS - with ICONS */
ul {
  list-style: none;
  margin-bottom: 12px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 1rem;
  padding: 8px 0 2px 0;
}
ul li img {
  min-width: 34px;
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-right: 4px;
  filter: grayscale(0.4) sepia(0.22) brightness(0.91) contrast(1.01);
  /* Industrial metallic feel */
}

/* BUTTONS UNIVERSAL */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
}

/* RESPONSIVE SECTIONS AND TEXT-IMAGE LAYOUTS */
@media (max-width: 1024px) {
  .section {
    padding: 36px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .testimonial-card {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    padding: 30px 6px;
  }
}
@media (max-width: 580px) {
  .section {
    padding: 20px 2px;
    margin-bottom: 22px;
  }
}

/* FOOTER */
footer {
  background: #1D252B;
  border-top: 2px solid #22313D;
  color: #EAECEC;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-nav a {
  color: #EAECEC;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .01em;
  padding: 2px;
  transition: color 0.16s;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #48B8D0;
}
.footer-contact {
  font-size: 0.96rem;
  color: #AAC0D0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 375px;
  line-height: 1.65;
}
.footer-contact img {
  width: 21px;
  height: 21px;
  display: inline-block;
  position: relative;
  top: 4px;
  margin-right: 9px;
  filter: grayscale(.3) brightness(1.2);
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 18px;
  }
}


/* TEXT-SECTION utility class */
.text-section {
  color: #D3D8DB;
  background: rgba(23,94,139,0.06);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
}
.text-section h2 {
  color: #48B8D0;
  margin-top: 12px;
  margin-bottom: 9px;
  font-size: 1.1rem;
}
.text-section ul {
  margin-bottom: 12px;
  gap: 12px;
}
.text-section li {
  color: #EFF5F7;
  padding-left: 0;
}

/* TABLES (if any, add industrial minimal style) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #202830;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 12px;
  text-align: left;
}
th {
  background: #22313D;
  color: #48B8D0;
}
td {
  border-bottom: 1px solid #2B3642;
}

/* COLLAPSIBLE/UTILITY CLASSES */
.hide { display: none !important; }
.show { display: block !important; }

/* ----- COOKIE CONSENT BANNER ----- */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20000;
  width: 100vw;
  background: #232C34;
  color: #EFF5F7;
  box-shadow: 0 -6px 22px rgba(23,94,139,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 23px 16px 21px 16px;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.68,.28,.43,1.1), opacity 0.28s;
}
.cookie-consent.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent-info {
  max-width: 420px;
  color: #FFF7E3;
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-size: .98rem;
  padding: 10px 18px;
  border-radius: 6px;
  border: 2px solid #48B8D0;
  background: #175E8B;
  color: #FFF7E3;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.17s;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 2px 5px rgba(23,94,139,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #48B8D0;
  color: #191E23;
  box-shadow: 0 2px 12px rgba(72,184,208,0.18);
}
.cookie-btn.reject {
  background: #232C34;
  border: 2px solid #48B8D0;
  color: #48B8D0;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EAECEC;
  color: #175E8B;
  border-color: #175E8B;
}
.cookie-btn.settings {
  background: #1D252B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #48B8D0;
  color: #191E23;
}
@media (max-width: 750px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 12px;
  }
  .cookie-consent-info {
    max-width: 100%;
    font-size: 0.98rem;
  }
  .cookie-consent {
    padding: 20px 8px 18px 8px;
  }
}

/* ------ COOKIE PREFERENCES MODAL ------ */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,27,31,0.82);
  z-index: 22000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(.43,.28,.68,1.1);
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #202830;
  border-radius: 15px;
  box-shadow: 0 8px 36px rgba(23,94,139,0.25);
  color: #EFF5F7;
  min-width: 320px;
  max-width: 90vw;
  padding: 38px 34px 26px 34px;
  position: relative;
  border: 2.5px solid #48B8D0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 30001;
  animation: modalIn 0.37s cubic-bezier(.43, .28, .68, 1.1);
}
@keyframes modalIn {
  from { transform: translateY(100px) scale(0.93); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: #48B8D0;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .17s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFF7E3;
}
.cookie-modal h3 {
  color: #48B8D0;
  margin-bottom: 5px;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #294E65;
  padding: 14px 0;
  gap: 8px;
}
.cookie-category:last-of-type {
  border-bottom: none;
}
.cookie-category-label {
  font-size: 1rem;
  color: #FFF7E3;
  font-weight: 500;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-toggle-checkbox {
  appearance: none;
  width: 38px;
  height: 20px;
  border-radius: 12px;
  background: #202830;
  cursor: pointer;
  outline: none;
  transition: background 0.24s;
  border: 2px solid #48B8D0;
  position: relative;
  margin-right: 2px;
}
.cookie-toggle-checkbox:checked {
  background: #48B8D0;
}
.cookie-toggle-checkbox:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFF7E3;
  transition: transform 0.24s;
}
.cookie-toggle-checkbox:checked:before {
  transform: translateX(16px);
}
.cookie-toggle-label {
  font-size: 0.98rem;
  color: #EAECEC;
  margin-left: 3px;
}
.cookie-category[aria-disabled="true"] .cookie-toggle-checkbox,
.cookie-category[aria-disabled="true"] .cookie-toggle-label {
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal-actions {
  margin-top: 22px;
  gap: 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 17px 5vw 21px 7vw;
  }
}

/* MICROINTERACTIONS & ANIMATIONS */
.card, .testimonial-card, .section, .btn-primary, .cookie-btn {
  transition: box-shadow 0.18s, background 0.21s, color 0.22s, border .19s, transform 0.13s;
}
.card:active, .btn-primary:active {
  transform: scale(0.985);
}

/* SCROLLBAR STYLES for industrial feel */
::-webkit-scrollbar {
  width: 10px;
  background: #22313D;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1D252B 85%, #48B8D0 200%);
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #191E23;
}

/* INDUSTRIAL METAL ACCENTS */
.section, .card, .testimonial-card {
  border-bottom: 3px solid #294E65;
  box-shadow: 0 3px 14px rgba(23,94,139,0.10) inset; /* metallic accent inside */
}
.card {
  border-bottom-width: 5px;
  border-bottom-color: #48B8D0;
}

hr {
  border: 0;
  border-top: 2px solid #22313D;
  margin: 28px 0;
}

/* TYPOGRAPHY SCALE RESPONSIVENESS */
@media (min-width: 650px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.55rem; }
  h3 { font-size: 1.19rem; }
}
@media (min-width: 1200px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.23rem; }
}

/* ACCESSIBILITY: FOCUS INDICATORS */
a:focus,
.btn-primary:focus,
button:focus,
input:focus,
.cookie-btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 3px solid #48B8D0;
  outline-offset: 2px;
}

/* ---------- END ---------- */
