/* =========================================================================
   Pentolando Industrial Modern Style CSS
   Responsive, flexbox-only, mobile-first, accessible
   ========================================================================= */
  
/* ===================
   RESET & BASELINE
   =================== */
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 {
  font-family: 'Montserrat', Arial, "Liberation Sans", Helvetica, sans-serif;
  font-size: 16px;
  height: 100%;
  background: #212524;
  color: #F6E6C9;
}
body {
  min-height: 100vh;
  background: #1A1C1A;
  color: #F6E6C9;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }
img, video { max-width: 100%; height: auto; border: 0; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
strong { font-weight: 600; }
hr { border: none; border-top: 1px solid #444; margin: 24px 0; }

/* ===================
   TYPOGRAPHY
   =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', Times, serif;
  color: #F6E6C9;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; line-height: 1.12; }
h2 { font-size: 1.6rem; margin-bottom: 16px; line-height: 1.17; }
h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.21; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, blockquote { font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
ul, ol { padding-left: 22px; }
blockquote {
  font-style: italic;
  color: #1A1C1A;
  background: #F6E6C9;
  border-left: 4px solid #B04100;
  margin-bottom: 10px;
  padding: 12px 18px 12px 20px;
  font-size: 1rem;
  border-radius: 8px 0 0 8px;
}
.customer-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #B04100;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-left: 4px;
}

/* ===================
   LAYOUT CONTAINERS
   =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px;}
.card { background: #232625; margin-bottom: 20px; position: relative; box-shadow: 0 4px 20px rgba(30,32,33,0.10); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; border: 1px solid #363736; }
.card:hover { box-shadow: 0 6px 30px rgba(193,92,43,0.14), 0 1.5px 2.5px rgba(90,90,90,0.13); }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.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;
}
.text-section {
  background: #233330;
  border-radius: 10px;
  padding: 32px 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 10px rgba(90,85,80,0.05);
}
.feature-item {
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  gap: 15px;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6E6C9;
  color: #232625;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(38,80,77,0.08);
  margin-bottom: 20px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  border-left: 5px solid #B04100;
  letter-spacing: 0.02em;
}
.testimonial-card blockquote { background: none; color: #232625; border: none; padding: 0; margin: 0; font-size: 1.07rem; }
.testimonial-card .customer-name { color: #B04100; font-size: 0.96rem; }

/* ===================
   GENERAL COMPONENTS
   =================== */
header {
  width: 100%;
  background: #232625;
  border-bottom: 1px solid #393f3c;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 18px;
}
.logo img {
  height: 38px;
  width: auto;
  filter: brightness(1.35);
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #F6E6C9;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #B04100;
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #B04100;
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 15px rgba(176,65,0,0.07);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.19s, box-shadow 0.19s, transform 0.12s;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #C15C2B;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 18px rgba(176,65,0,0.14);
  color: #fff;
}
/* Burger Menu */
.mobile-menu-toggle {
  display: flex;
  font-size: 2rem;
  background: none;
  color: #B04100;
  border: none;
  cursor: pointer;
  padding: 5px 13px 5px 9px;
  border-radius: 6px;
  align-items: center;
  transition: background 0.16s;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #21443D;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; 
  height: 100vh;
  background: rgba(33,32,32,0.96);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.62, .11, .5, 1.6);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F6E6C9;
  border: none;
  font-size: 2.3rem;
  padding: 22px 18px 10px 0;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 48px 40px 40px 0;
  width: 100%;
  gap: 22px;
}
.mobile-nav a {
  color: #F6E6C9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 14px 8px;
  border-radius: 0 22px 22px 0;
  transition: background 0.14s, color 0.14s, transform 0.19s;
  width: 240px;
  text-align: right;
  margin-bottom: 0;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B04100;
  color: #fff;
  transform: translateX(-6px);
}

/* Hide main nav/burger per device */
nav.main-nav,
.cta-btn {
  display: none;
}

@media (min-width: 769px) {
  nav.main-nav {
    display: flex;
  }
  .cta-btn {
    display: inline-block;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===================
   HERO SECTION
   =================== */
.hero {
  background: #1A1C1A url('../assets/hero_bg_industrial_modern.jpg') no-repeat center/cover;
  min-height: 300px;
  padding: 56px 0 36px;
  position: relative;
  border-bottom: 2px solid #B04100;
  box-shadow: 0 12px 32px -26px #111B18;
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 240px;
  gap: 0;
}
.hero .content-wrapper {
  background: rgba(38,80,77,.90);
  border-radius: 12px;
  box-shadow: 0 6px 26px -14px #13151477;
  padding: 20px 18px 25px;
  color: #F6E6C9;
  max-width: 480px;
  margin-bottom: 0;
}
.hero h1 {
  color: #fff;
  font-size: 2.1rem;
  margin-bottom: 17px;
  line-height: 1.18;
}
.hero p { color: #F6E6C9; font-size: 1.06rem; margin-bottom: 20px; }

/* ===================
   FOOTER
   =================== */
footer {
  background: #232625;
  border-top: 1.5px solid #393f3c;
  color: #F6E6C9;
  margin-top: 60px;
  padding-top: 20px;
  padding-bottom: 24px;
  letter-spacing: 0.028em;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #B04100;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: 4px;
  transition: color 0.13s;
  padding: 4px 4px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #F6E6C9; background: #B04100; }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.35) contrast(1.18) brightness(1.05);
  transition: filter 0.17s;
  cursor: pointer;
}
.social-icons img:hover,
.social-icons img:focus { filter: none; }

/* ===================
   BUTTONS & INTERACTIONS
   =================== */
button, .cta-btn {
  outline: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #B04100;
  outline-offset: 2px;
}

/* ===================
   SPACING & FLEX LAYOUTS
   =================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* ===================
   CONTACT MAP EMBED
   =================== */
.map-embed {
  width: 100%;
  min-height: 110px;
  background: #232625 url('../assets/map_placeholder_dark.jpg') center no-repeat;
  border-radius: 8px;
  margin-top: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(38,80,77,0.04);
  color: #F6E6C9;
  font-size: 1rem;
}

/* ===================
   LISTS
   =================== */
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0.3em;
}
ol li {list-style-type: decimal;}
ul li strong, ol li strong { color: #B04100; font-weight: 600; }

/* ===================
   UTILITIES
   =================== */
.text-center { text-align: center; }
.m-b-24 { margin-bottom: 24px; }

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 900;
  background: rgba(38,80,77,0.97);
  color: #F6E6C9;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 16px 20px 16px;
  box-shadow: 0 -2px 22px rgba(0,0,0,0.12);
  flex-wrap: wrap;
  gap: 20px 30px;
  transition: transform 0.33s cubic-bezier(.64, .04, .3, 1.7);
  transform: translateY(0);
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-banner__text {
  flex: 1 1 200px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #B04100;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 5px rgba(176,65,0,0.08);
  transition: background 0.17s, transform 0.13s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #C15C2B;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.secondary {
  background: #233330;
  color: #F6E6C9;
  border: 1.5px solid #B04100;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: #393f3c;
  color: #fff;
}

/* ===================
   COOKIE POPUP MODAL
   =================== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  background: #232625;
  color: #fff;
  width: 96vw;
  max-width: 415px;
  padding: 32px 26px 26px 26px;
  border-radius: 12px;
  box-shadow: 0 12px 64px 0 rgba(0,0,0,0.26);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.17s, transform 0.35s;
}
.cookie-modal__header {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-modal__category {
  display: flex; align-items: center;
  gap: 10px;
  background: #393f3c;
  color: #F6E6C9;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 9px;
}
.cookie-modal__category.essential {
  background: #26504D;
  opacity: 0.90;
}
.cookie-modal__toggle {
  margin-left: auto;
}
.cookie-modal__footer {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 20px;
  background: none;
  border: none;
  color: #F6E6C9;
  font-size: 2rem;
  cursor: pointer;
}

/* Toggle switch for cookie settings */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #B04100;
  border-radius: 24px;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #26504D;
}
.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #F6E6C9;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(22px);
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1069px) {
  .container { max-width: 940px; }
}
@media (max-width: 900px) {
  .container { max-width: 740px; }
  .hero .content-wrapper { max-width: 94vw; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 97vw; }
  .section { padding: 28px 6vw; margin-bottom: 36px; }
  .hero { padding: 28px 0 16px; margin-bottom: 20px; }
  .footer-nav { flex-direction: column; gap: 10px 0; align-items: flex-start; }
  .testimonial-card { max-width: 99vw; padding: 16px; }
  .card-container, .content-grid { gap: 16px; }
  .content-wrapper { gap: 12px; }
  header .container { flex-direction: row; padding: 10px 12px; gap: 9px; }
  .logo img { height: 30px; }
  .text-section { padding: 20px 12px; }
  .text-image-section { flex-direction: column; align-items: stretch; gap: 14px; }
  .feature-item { gap: 9px; }
  .map-embed { padding: 14px; font-size: 0.97rem; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 1.4rem; }
  .hero .container { padding: 0 0 0 3px; }
  .cookie-banner__text { font-size: 0.96rem; }
  .cookie-modal { padding: 18px 6vw; }
  .footer-contacts { font-size: 0.92rem; }
  .mobile-nav a { font-size: 1.1rem; width: 170px; }
}

/* ===================
   PRINT/ACCESSIBILITY
   =================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { color: #212524; background: #fff; }
}

/* =========================================================================
   END Pentolando Industrial Modern Style CSS
   ========================================================================= */
