/* ================================================================
   CSS RESET & NORMALIZE
==================================================================*/
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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: #1A2233;
  color: #F4F1ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  background-color: #1A2233;
}

*, *:before, *:after { box-sizing: inherit; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===================
   BRAND TYPOGRAPHY
====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #F4F1ED;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.1; letter-spacing: 0.01em; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.13rem; }
p, li, blockquote { font-size: 1rem; color: #ece7e2; }
p { margin-bottom: 16px; }
strong { font-weight: 600; color: #FDFCF9; }

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.15rem; }
}

/* ==================
   BRAND COLORS
==================== */
:root {
  --primary: #233557;
  --secondary: #7E2F43;
  --accent: #F4F1ED;
  --bg: #1A2233;
  --card: #222A37;
  --metal: #667080; /* metallic steel accent */
  --danger: #90222c;
  --success: #289743;
  --shadow: rgba(34, 43, 58, 0.18);
}

/* =====================
   FLEX LAYOUT CONTAINERS
======================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--card);
  border-radius: 14px;
  box-shadow: 0 4px 14px var(--shadow);
  padding: 28px 26px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.3s, transform 0.2s;
  border: 1.5px solid var(--metal);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(34,43,58,0.32);
  transform: translateY(-2px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F4F1ED;
  color: #23272e;
  border-left: 5px solid var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,43,58,0.16);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 250px;
  max-width: 620px;
  font-size: 1.06rem;
}
.testimonial-card p {
  color: #23272e !important;
}
.testimonial-card strong {
  color: var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ============================
   HEADER & NAVBAR
=============================== */
header {
  background: #181F2B;
  box-shadow: 0 2px 12px rgba(30,33,43,0.12);
  width: 100%;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 12px 20px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F1ED;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  padding: 7px 10px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}
.cta-btn {
  padding: 10px 30px;
  border-radius: 25px;
  background: var(--secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: none;
  box-shadow: 0 3px 14px rgba(166,97,129,0.11);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s, transform 0.17s;
  margin-left: 18px;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover {
  background: #A64768;
  color: #fff;
  box-shadow: 0 6px 30px rgba(126,47,67,0.23);
  transform: translateY(-3px) scale(1.05);
}
header img[alt="Parans Vecc Conseil"] {
  height: 48px;
  width: auto;
  filter: none;
}

@media (max-width: 992px) {
  header nav { gap: 13px; }
  .cta-btn { margin-left: 10px; padding: 10px 20px; font-size: 1rem; }
  header .container { padding: 16px 10px 8px 10px; }
}

/* ====================
   MOBILE NAV MENU
====================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 28px;
  right: 24px;
  z-index: 101;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--accent);
  transition: color 0.22s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { color: var(--secondary); }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #181F2B;
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.50), opacity 0.4s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 28px 24px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 0 0;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 7px;
  transition: background 0.19s, color 0.17s;
  min-width: 210px;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 900px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    right: 20px;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ====================
   MAIN STRUCTURE
======================= */
main {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: transparent;
}
.text-section {
  margin-bottom: 18px;
  padding: 0 0 0 0;
}
.text-section ul, .text-section ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.text-section li {
  margin-bottom: 8px;
}

ul {
  list-style: disc inside;
}
li > img {
  vertical-align: middle;
  height: 1.35em;
  margin-right: 8px;
  margin-bottom: 2px;
}

/* =============================
   INDUSTRIAL STYLE TOUCHES
=============================== */
.card, .cta-btn, .cta-btn:hover, .testimonial-card {
  border-width: 1.5px;
  border-style: solid;
}
.card, .testimonial-card {
  border-color: var(--metal);
}
.card {
  background: linear-gradient(106deg,rgb(34,42,55) 95%,#242831 100%);
}
.card strong, .feature-item strong { color: var(--secondary); }
.feature-item h3 { color: var(--accent); }

hr {
  border: none;
  border-top: 2px solid var(--metal);
  margin: 30px 0;
}

/* =========================
   BUTTONS & LINKS
========================== */
button, .cta-btn, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  border-radius: 22px;
  border: none;
  padding: 10px 28px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(126,47,67,0.11);
  transition: background 0.22s, box-shadow 0.25s, transform 0.12s;
  outline: none;
  font-size: 1rem;
  letter-spacing: 0.09em;
}
button:hover, .cta-btn:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: #A64768;
  color: #fff;
  box-shadow: 0 8px 26px rgba(126,47,67,0.16);
  transform: translateY(-2px);
}
a.cta-btn:visited {
  color: #fff;
}
a:focus { outline: 2px solid var(--metal); }

/* ====================
   FEATURE ICONS
===================== */
li img {
  filter: grayscale(0.36) contrast(1.1) brightness(0.94);
  margin-bottom: -2px;
  margin-right: 10px;
}

/* ===================
   FOOTER
==================== */
footer {
  background: #181F2B;
  color: #F4F1ED;
  width: 100%;
  padding: 42px 0 0 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.footer-links a {
  color: var(--accent);
  font-size: 1.01rem;
  padding: 7px 8px;
  border-radius: 5px;
  transition: background 0.15s;
  letter-spacing: 0.06em;
}
.footer-links a:hover,
.footer-links a:focus { background: var(--secondary); color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-contact img {
  height: 40px;
  margin-bottom: 7px;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social img {
  height: 24px;
  opacity: 0.85;
  filter: grayscale(0.16) contrast(1.05);
  transition: opacity 0.18s;
}
.footer-social img:hover { opacity: 1; filter: none; }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 0 12px;
  }
  .footer-links { gap: 15px; }
}

/* =========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-right: 9px;
    padding-left: 9px;
  }
  section, .section {
    padding: 24px 5px;
    margin-bottom: 32px;
    gap: 16px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    font-size: 1rem;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
}

/* ========================
   ANIMATIONS & TRANSITIONS
========================== */
section, .card, .cta-btn, .testimonial-card {
  transition: box-shadow 0.25s, background 0.19s, transform 0.16s;
}
.card, .testimonial-card {
  will-change: transform, box-shadow;
}

/* ===========================
   FORM, LISTS, MISC.
============================= */
input, textarea, select {
  border: 1px solid var(--metal);
  border-radius: 7px;
  background: #232C3C;
  color: #F4F1ED;
  padding: 10px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
  font-size: 1rem;
}
input:focus, textarea:focus { border-color: var(--secondary); outline: 1.5px solid var(--secondary); }
label { display: block; margin-bottom: 4px; }

ol {
  list-style: decimal inside;
  color: #ece7e2;
  margin-bottom: 14px;
  padding-left: 18px;
}

blockquote {
  border-left: 4px solid var(--metal);
  color: #c1c8d1;
  margin-left: 0;
  padding-left: 11px;
  font-style: italic;
}

/* ===========================
   COOKIE CONSENT BANNER & MODAL
============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232C3C;
  color: #F4F1ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  box-shadow: 0 -2px 12px rgba(34,43,58,0.11);
  z-index: 3000;
  padding: 18px 14px 14px 14px;
  font-size: 1rem;
  animation: slideInUp 0.45s cubic-bezier(.68,-0.55,.27,1.50);
}
.cookie-banner p { margin-bottom: 6px; color: #F4F1ED; }
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 19px;
  border-radius: 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 4px;
  margin-bottom: 5px;
  transition: background 0.18s;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.1px solid var(--secondary);
  color: var(--secondary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept { background: var(--success); }
.cookie-btn.accept:hover { background: #41ae62; }
.cookie-btn.reject { background: var(--danger); }
.cookie-btn.reject:hover { background: #c5333a; }

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,43,58,0.89);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.33s ease;
}
.cookie-modal {
  background: #232C3C;
  border-radius: 18px;
  max-width: 380px;
  width: 92%;
  padding: 34px 24px 26px 24px;
  box-shadow: 0 9px 40px rgba(34,43,58,0.23);
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: #F4F1ED;
  position: relative;
  font-size: 1.01rem;
}
.cookie-modal h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 13px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #F4F1ED;
  font-size: 1.6rem;
  position: absolute;
  right: 14px;
  top: 8px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus { color: var(--danger); }

@keyframes slideInUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   MISCELLANEOUS
============================= */
::-webkit-scrollbar { width: 8px; background: #232C3C; }
::-webkit-scrollbar-thumb { background: #34415a; border-radius: 14px; }
::-webkit-scrollbar-thumb:hover { background: #485e86; }

/* User can easily read forms and review/testimonial content */
.text-section, .testimonial-card {
  word-break: break-word;
}

/* ============================
   VISUAL HIERARCHY SPACING
============================ */
.section, section {
  margin-bottom: 60px !important;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px !important; /* enforce necessary spacing between all content cards */
}
.card-container, .content-grid,
.feature-grid, .footer-links, .footer-social {
  gap: 20px !important;
}

/* ==========================
   ACCESSIBILITY
============================ */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ===========================
   INDUSTRIAL FONT Fallbacks
============================= */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather'), local('Merriweather-Bold');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
  font-display: swap;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* End of CSS */
