/* ============================== */
/*        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, font, 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;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #151a22;
  color: #E5E7EB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================== */
/*      BRAND COLORS & FONTS      */
/* ============================== */
:root {
  --color-primary: #1F2937;
  --color-secondary: #B88932;
  --color-accent: #E5E7EB;
  --color-bg: #151a22;
  --color-metal: #737373;
  --color-light: #fff;
  --color-dark: #20252b;
  --shadow-medium: 0 2px 16px 0 rgba(17,20,26,0.17);
  --radius-md: 12px;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display Bold'), url(https://fonts.gstatic.com/s/playfairdisplay/v26/nuFiD-vYSZviVYUb_rj3ij__anPXDTuI.woff2) format('woff2');
}
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-accent);
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.1;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
}

p, li, dd, dt, address, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
strong, b {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Typography scale responsive */
@media (min-width:600px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}
@media (min-width:900px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.3rem; }
}

/* ============================== */
/*          SPACING UTILS         */
/* ============================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-metal);
  padding: 1.7rem 1.2rem;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.gap-32 { gap: 32px; }
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-8 {  margin-bottom: 8px; }
.mt-32 { margin-top: 32px; }

/* ============================== */
/*     HEADER & NAVIGATION BAR    */
/* ============================== */
header {
  background: var(--color-primary);
  box-shadow: 0 2px 16px 0 rgba(20, 23, 29, 0.13);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  display: inline-block;
  color: var(--color-accent);
  padding: 6px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  color: var(--color-secondary);
}
.button-primary {
  background: var(--color-secondary);
  color: #1F2937;
  border-radius: 7px;
  padding: 10px 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(20, 23, 29, 0.14);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  outline: none;
  display: inline-block;
  margin-left: 12px;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.button-primary:hover, .button-primary:focus {
  background: #cf9936;
  color: #111217;
  box-shadow: 0 6px 18px 0 rgba(184,137,50,0.18);
  transform: translateY(-2px) scale(1.025);
}

/* ============================== */
/*     HERO SECTION & CTA STYLE   */
/* ============================== */
.hero-section, .cta-section, .contact-hero, .thankyou-section {
  width: 100%;
  background: linear-gradient(145deg, #1f2937 80%, #232B34 100%);
  box-shadow: 0 3px 48px 0 rgba(30,36,41,0.23);
}
.hero-section h1, .hero-section p, .cta-section h2, .cta-section p {
  color: #fff;
}
.hero-section {
  padding: 64px 0 44px 0;
}
.cta-section {
  padding: 50px 0 40px 0;
  background: linear-gradient(135deg, #232B34 80%, #242A2E 100%);
}
.contact-hero, .thankyou-section {
  padding: 50px 0 30px 0;
}

/* ============================== */
/*        LISTS & ICON LISTS      */
/* ============================== */
ul li, ol li {
  margin-left: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
ul li img, ol li img {
  height: 26px;
  width: 26px;
  margin-right: 8px;
  filter: drop-shadow(0 1px 1px #B88932);
}
ul li:last-child, ol li:last-child { margin-bottom: 0; }

ol {
  counter-reset: ol;
  padding-left: 0;
}
ol li {
  position: relative;
  padding-left: 32px;
}
ol li::before {
  counter-increment: ol;
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  font-family: 'Roboto Mono', 'Consolas', monospace;
  color: var(--color-secondary);
  font-weight: 700;
}

/* ============================== */
/*         FOOTER LAYOUT          */
/* ============================== */
footer {
  background: #111217;
  border-top: 2px solid #22232a;
  margin-top: 64px;
  color: var(--color-accent);
  font-size: 1rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 10px 12px 10px;
}
.footer-main > nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main nav a {
  color: #E5E7EB;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 0.18s;
  margin-bottom: 2px;
}
.footer-main nav a:hover { color: var(--color-secondary); }
.footer-main a img { height: 37px; width: auto; }

.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-accent);
  font-size: 0.98rem;
}
.contact-short img {
  display: inline;
  height: 19px;
  width: 19px;
  margin-right: 8px;
  vertical-align: middle;
  filter: grayscale(1) brightness(1.7);
}
.legal-disclaimer {
  margin-top: 24px;
  font-size: 0.98rem;
  color: #66696d;
  width: 100%;
  text-align: left;
}

/* ============================== */
/*       TESTIMONIALS/CARDS       */
/* ============================== */
.testimonial-card {
  background: #F3F4F6;
  color: #282a2f;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(50,56,62,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-secondary);
  padding: 24px 22px 20px 22px;
}
.testimonial-card p {
  color: #22242A;
  font-size: 1.07rem;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #676767;
  font-size: 1.01rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}

.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 22px 0 rgba(40,44,49,0.19);
  transform: translateY(-2px) scale(1.017);
  transition: box-shadow 0.18s, transform 0.17s;
}

/* ============================== */
/*          BUTTONS STYLE         */
/* ============================== */
.button-primary:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
.button-secondary {
  background: #313843;
  color: var(--color-secondary);
  padding: 8px 24px;
  border-radius: 7px;
  border: 1.5px solid var(--color-secondary);
  font-weight: 500;
  font-size: 1rem;
  margin-left: 6px;
  margin-right: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-secondary);
  color: #20252b;
  box-shadow: 0 4px 16px 0 rgba(184,137,50,0.17);
}

/* ============================== */
/*   MOBILE NAVIGATION (BURGER)   */
/* ============================== */
.mobile-menu-toggle {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 10px 17px;
  border-radius: 7px;
  font-size: 2.2rem;
  line-height: 1;
  box-shadow: 0 1px 7px 0 rgba(25,28,32,0.13);
  margin-left: 24px;
  z-index: 91;
  border: none;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 98vw;
  max-width: 410px;
  background: #20252b;
  box-shadow: 12px 0 32px 0 rgba(20,22,25,0.37);
  z-index: 9999;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(.61,.01,.51,1.14);
  display: flex;
  flex-direction: column;
  padding: 35px 26px 22px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-secondary);
  color: #232832;
  border-radius: 46px;
  font-size: 2.1rem;
  line-height: 1;
  padding: 7px 17px 7px 17px;
  margin-bottom: 18px;
  margin-right: 0;
  transition: background 0.17s, color 0.15s;
  z-index: 10001;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  margin-top: 26px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.19rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 13px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: rgba(184,137,50,0.061);
}

@media (min-width: 1050px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav { display: flex !important;   }
}
@media (max-width: 1049px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile menu overlay background blur (if you want for overlay) */
@media (max-width: 1049px) {
  .mobile-menu {
    box-shadow: 8px 0 64px 0 rgba(25,28,32,0.29);
  }
}


/* ============================== */
/*     COOKIE CONSENT BANNER      */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10001;
  background: #23272e;
  color: var(--color-accent);
  border-top: 2px solid #363947;
  box-shadow: 0 -2px 24px 0 rgba(35,39,46, 0.13);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 22px 26px 18px 26px;
  font-size: 1rem;
  animation: cookieFadeIn 0.6s cubic-bezier(.32, .94, .6, 1.02);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(120px); }
  to   { opacity: 1; transform: translateY(0);  }
}
.cookie-banner .cookie-text {
  max-width: 570px;
  font-size: 1.06rem;
  color: #e5e7eb;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary {
  min-width: 140px;
  margin-bottom: 0 !important;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10010;
  width: 100vw;
  height: 100vh;
  background: rgba(26,28,35,0.67);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.42s cubic-bezier(.23, .68, .6, 1.11);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #262833;
  color: var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 40px 0 rgba(28,30,39,0.27);
  max-width: 98vw;
  min-width: 320px;
  width: 100%;
  max-width: 410px;
  padding: 32px 22px 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: contentBounceIn .38s cubic-bezier(.42,1.26,.63,1.03);
}
@keyframes contentBounceIn {
  from { transform: scale(0.87); opacity: 0; }
  to { transform: scale(1.0); opacity: 1; }
}
.cookie-modal .modal-title {
  color: var(--color-secondary);
  font-size: 1.3rem;
  margin-bottom: 7px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.6rem;
  color: #b88932;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 884px;
  transition: background 0.17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #151a22;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 17px 0 0 0;
}
.cookie-modal .category-label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #e5e7eb;
}
.cookie-modal .cookie-toggle {
  width: 38px;
  height: 22px;
  background: #393B42;
  border-radius: 18px;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  margin-left: 10px;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #b88932;
  border-radius: 50%;
  transition: left 0.18s, background 0.12s;
  box-shadow: 0 1px 3px 0 rgba(50,54,59,0.12);
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 18px;
  background: #e9b94e;
}
.cookie-modal .cookie-toggle input:disabled + span {
  background: #cec094;
  opacity: 0.77;
}
.cookie-modal .category-desc {
  margin-left: 0;
  color: #b9bac7;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 6px;
  margin-top: 1px;
}

/* ============================== */
/*   BASIC ELEMENTS & UTILITIES   */
/* ============================== */
a {
  transition: color 0.17s, border 0.12s;
}
address {
  color: var(--color-accent);
  font-style: normal;
  margin-bottom: 11px;
}
hr {
  border: 0;
  height: 1px;
  background: #333745;
  margin: 26px 0;
}

/* ============================== */
/*         RESPONSIVE FLEXBOX     */
/* ============================== */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 10px 7px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .hero-section, .cta-section, .contact-hero, .thankyou-section {
    padding: 32px 0 20px 0;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 5px 6px 5px;
  }
  .testimonial-card { padding: 16px 9px; }
  .card { padding: 1.1rem 0.6rem; }
  .mobile-menu { max-width: 82vw; }
  .content-grid { flex-direction: column; gap: 13px; }
  .text-image-section { flex-direction: column; gap: 14px; }
}

@media (max-width: 600px) {
  .footer-main nav a, .footer-main .contact-short {
    font-size: 0.95rem;
  }
  .testimonial-card {
    padding: 11px 7px;
    font-size: 0.95rem;
  }
}

/* ============================== */
/*    SCROLLBAR (INDUSTRIAL)      */
/* ============================== */
::-webkit-scrollbar {
  width: 13px;
  background: #191c22;
}
::-webkit-scrollbar-thumb {
  background: #3c4151;
  border-radius: 6px;
  border: 2.5px solid #20242e;
}
::-webkit-scrollbar-thumb:hover {
  background: #b88932;
}

/* ============================== */
/*   URBAN, INDUSTRIAL ACCENTS    */
/* ============================== */
.card, .testimonial-card, .button-primary, .button-secondary {
  box-shadow: 0 1px 7px 0 rgba(25,28,32,0.13);
  border-radius: var(--radius-md);
}
.section, .cta-section, .hero-section, .contact-hero, .thankyou-section {
  border-left: 7px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
@media (max-width: 600px) {
  .section, .cta-section, .hero-section, .contact-hero, .thankyou-section {
    border-left-width: 4px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }
}

/* ============================== */
/*    VISUAL HIERARCHY EFFECTS    */
/* ============================== */
.card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.13s;
}
.button-primary, .button-secondary {
  transition: box-shadow 0.13s, background 0.14s, color 0.14s, transform 0.13s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.97);
}

/* ============================== */
/*       FOCUS STATE HIGHLIGHT    */
/* ============================== */
a:focus, button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 10;
}

/* ============================== */
/*         FORM STYLE BASIC       */
/* ============================== */
input, textarea, select {
  background: #1d222b;
  color: var(--color-accent);
  border: 1.5px solid #31353c;
  border-radius: 6px;
  padding: 10px 13px;
  margin-bottom: 15px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border 0.15s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  background: #23272e;
}

/* ============================== */
/*             DL, DT, DD         */
/* ============================== */
dl {
  margin-bottom: 24px;
}
dt {
  font-family: 'Playfair Display', serif;
  color: var(--color-secondary);
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 17px;
}
dd {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 9px;
  margin-left: 0;
}

/* ============================== */
/*      NAV IN-LIST SELECTION     */
/* ============================== */
nav a:active, nav a.selected {
  color: var(--color-secondary) !important;
  font-weight: 700;
}

/* ============================== */
/*      MISC ELEMENTS (FAQ ETC)   */
/* ============================== */
address, .thankyou-section .text-section, .contact-short {
  font-size: 1.05rem;
  color: var(--color-accent);
  background: none;
}

/* ============================== */
/*      TABLE (if any future)     */
/* ============================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
th, td {
  padding: 11px 10px;
  border: 1px solid #2a2e35;
}
th {
  background: #262c33;
  color: var(--color-secondary);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* ============================== */
/*         Z-INDEX LAYERS         */
/* ============================== */
header { z-index: 95; }
.mobile-menu { z-index: 9999; }
.cookie-modal { z-index: 10010; }
.cookie-banner { z-index: 10001; }

/* ============================== */
/* Prevent Absolute Layouts (cards/text) - Only for icons/decoration */
/* .card, .testimonial-card, .content-wrapper etc are all in flow/flexbox. No absolute positioning except for modal-close and similar. */

/* ============================== */
/*    END OF INDUSTRIAL MODERN    */
/* ============================== */
