/* ==================================================  
   Frosty Drift Remonty - style.css  
   INDUSTRIAL MODERN Theme (flexbox only layout)  
================================================== */
/* RESET & BASELINE NORMALIZATION */
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,
main, 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 { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #ECEEF1;
  background: #181C23;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width:100%; height:auto; display:block; }
a { color: #E1B93F; text-decoration:none; transition: color .2s; }
a:focus { outline: 2px dashed #E1B93F; outline-offset:2px; } 

/* =====================================
   COLORS / VARIABLES (fallbacks)
====================================== */
:root {
  --col-primary: #184785;
  --col-secondary: #ECEEF1;
  --col-accent: #E1B93F;
  --col-dark-bg: #181C23;
  --col-mid-bg: #21242b;
  --col-card-bg: #232730;
  --col-metal: #3E4A5D;
  --col-divider: #253551;
  --col-white: #FFF;
}

/* =====================================
   TYPOGRAPHY (Industrial Modern)
====================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--col-secondary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(24,71,133,0.20);
  line-height: 1.1;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top:8px;
  background: linear-gradient(90deg, var(--col-accent) 60%, var(--col-metal) 100%);
  border-radius: 5px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--col-accent);
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.text-section h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  color: var(--col-white);
}
.text-section p,
p {
  font-size: 1rem;
  color: var(--col-secondary);
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom:10px;
  font-size: 1rem;
  color: var(--col-secondary);
}
strong, b {
  color: var(--col-accent); font-weight:700;
}
blockquote {
  margin: 16px 0 16px 0;
  padding: 18px 30px;
  border-left: 4px solid var(--col-primary);
  background: var(--col-mid-bg);
  color: var(--col-secondary);
  font-style: italic;
  font-family:'Montserrat', Arial, sans-serif;
  border-radius:10px;
  box-shadow: 0 1px 6px 0 rgba(36,36,36,.11);
}

/* =====================================
   LAYOUT CONTAINERS & SECTIONS
====================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; }

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  background: var(--col-card-bg);
  flex: 1 1 240px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,38,45,0.10);
  border: 1px solid var(--col-divider);
  padding: 28px 20px 22px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px rgba(45,55,80,0.16);
  transform: translateY(-4px) scale(1.021);
  border-color: var(--col-primary);
}
.feature-grid img {
  width: 46px; height: 46px; display: block;
  margin-bottom: 7px;
  filter: grayscale(100%) contrast(1.2);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius:12px; background: var(--col-card-bg); box-shadow:0 1px 7px 0 rgba(24,71,133,.08); padding: 22px; border:1px solid var(--col-divider); }
.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; padding: 20px 26px; margin-bottom: 20px; background: var(--col-secondary); color: #222; border-radius: 12px; box-shadow: 0 2px 16px 0 rgba(24,71,133,0.11); border-left: 4px solid var(--col-primary); font-size: 1.08rem; transition: box-shadow .18s, border-color .18s; }
.testimonial-card p { color: #181C23; font-size: 1.08rem; margin-bottom:8px; }
.testimonial-card span { color: #3E4A5D; font-size: 0.98rem; font-family:'Montserrat',Arial,sans-serif; font-weight: 600; }
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(24,71,133,0.18);
  border-color: var(--col-accent);
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

.contact-shortform {
  display: flex; flex-direction: column; gap: 8px; margin-top: 17px;
}
.contact-shortform span {
  display: flex; align-items: center; gap:10px; color: var(--col-accent); font-weight: 600;
}
.contact-shortform img { width: 20px; height: 20px; filter: grayscale(100%) contrast(1.1); }

.unique-approach {
  display: flex; gap: 24px; margin-top:18px; flex-wrap: wrap;
}
.unique-approach ul { padding-left:18px; list-style:disc; }

/* =====================================
   HEADER & NAVIGATION (Industrial Flair)
====================================== */
header {
  background: linear-gradient(90deg, #202433 80%, #232730 100%);
  border-bottom: 2px solid var(--col-divider);
  box-shadow: 0 2px 14px 0 rgba(30,41,67,.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 26px;
}
header img { height: 53px; width: auto; display: block; }
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--col-secondary);
  padding: 7px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius:6px;
  transition: background .16s, color .14s;
  font-size: 1rem;
}
nav a.cta-main {
  background: var(--col-accent);
  color: #232730;
  font-weight: 600;
  box-shadow:0 2px 12px 0 rgba(225,185,63,0.13);
  border-radius:8px;
  padding: 9px 22px;
  margin-left: 7px;
  transition: background .2s, color .18s, transform .15s;
  border-bottom: 2px solid transparent;
}
nav a.cta-main:hover,
nav a.cta-main:focus {
  background: #FFD900;
  color: #111927;
  border-bottom: 2px solid #E1B93F;
  transform: translateY(-1px) scale(1.04);
}
nav a:hover,
nav a:focus {
  background: var(--col-primary);
  color: var(--col-accent);
}

.mobile-menu-toggle {
  background: none; border: none; color: var(--col-accent);
  font-size: 2.2rem; line-height: 1; display: none;
  cursor: pointer; padding: 7px 15px;
  z-index:30;
  border-radius: 4px;
  transition: background .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(225,185,63,0.09);
  color: #FFD900;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, #232730 90%, #184785 100%);
  transform: translateX(-102%);
  transition: transform 0.32s cubic-bezier(.9,.1,.5,1);
  z-index: 200;
  box-shadow: 4px 0 42px -14px #18478566;
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.show {
  transform:translateX(0);
  pointer-events:auto;
  opacity:1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none; border: none;
  color: var(--col-accent);
  margin: 28px 18px 18px 0;
  cursor:pointer;
  padding: 7px 7px;
  border-radius: 6px;
  transition: background .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background:rgba(225,185,63,0.07);
  color: #FFD900;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 60px;
}
.mobile-nav a {
  color: var(--col-secondary);
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 16px 0;
  text-align: center;
  border-radius:8px;
  transition: background .15s, color .15s;
  min-width:200px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--col-accent);
  color: #222;
}


@media (max-width: 1030px) {
  nav { gap: 12px; }
}
@media (max-width: 900px) {
  .container { padding-left: 9px; padding-right: 9px; }
  header .container { gap: 10px; }
}
@media (max-width: 820px) {
  header .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  header nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 768px) {
  .mobile-menu, .mobile-menu.show { display: none !important; }
}

/* =====================================
   MAIN SECTIONS AND WRAPPERS
====================================== */
main {
  background: var(--col-dark-bg);
  padding-bottom: 64px;
}
section { margin-bottom: 60px; padding: 40px 0; }

@media (max-width: 550px) {
  section { padding: 26px 0; }
  .section { padding:24px 7px; }
}

/* =====================================
   BUTTONS (CTA, Actions, Toggles)
====================================== */
.cta-main, .btn, button, input[type="submit"], .cookie-btn {
  appearance:none;
  background: var(--col-accent);
  color: #232730;
  font-family:'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border:none;
  border-radius: 7px;
  padding: 12px 30px;
  margin-top: 6px;
  box-shadow: 0 2px 18px 0 rgba(225,185,63,0.17);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .19s, color .18s, box-shadow .17s, transform .13s;
  position: relative;
}
.cta-main:hover, .cta-main:focus, .btn:hover, .btn:focus, button:hover, button:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: #FFD900;
  color: #181C23;
  transform: translateY(-2px) scale(1.032);
  box-shadow: 0 8px 36px 0 rgba(225,185,63,0.18);
}

/* =====================================
   FOOTER
====================================== */
footer {
  background: linear-gradient(90deg, #232730 90%, #184785 100%);
  color: var(--col-secondary);
  padding: 36px 0 16px 0;
  font-size: 1rem;
  border-top:2px solid #253551;
}
footer .container {
  display: flex; flex-direction: column; gap: 19px; align-items: center; justify-content: center;
}
footer nav {
  display: flex; gap: 18px; align-items: center;
}
footer nav a {
  color: var(--col-accent);
  font-family:'Montserrat', Arial, sans-serif;
  font-weight: 500; font-size: 0.98rem;
  transition:color .14s;
}
footer nav a:hover, footer nav a:focus { color: #FFD900; }
.footer-logo img { height: 46px; width: auto; margin-bottom:6px; }
.social-media-links { display: flex; gap: 12px; margin-top: 4px; }
.social-media-links a img {
  width: 36px; height: 36px;
  filter: grayscale(100%) brightness(.91);
  transition: filter .17s, opacity .17s;
  opacity:0.78;
}
.social-media-links a:hover img, .social-media-links a:focus img {
  filter: grayscale(10%) brightness(1.4) drop-shadow(0 0 8px #E1B93F55);
  opacity:1;
}
@media (max-width:600px) {
  footer .container { gap:11px; font-size:0.97rem; }
  .footer-logo img { height:38px; }
}

/* =====================================
   CARD/TEXT/ELEMENT STYLING
====================================== */
.card {
  background: var(--col-card-bg);
  color: var(--col-secondary);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(30,55,80,0.13);
  border: 1px solid var(--col-divider);
  transition: box-shadow .16s, transform .16s, border .18s;
}
.card:hover {
  box-shadow: 0 8px 38px rgba(30,71,133,0.16); border-color: var(--col-primary); transform: translateY(-3px) scale(1.021);
}

/* Chips, tags or highlights */
.tag, .chip {
  display: inline-block;
  padding: 5px 17px;
  background: var(--col-metal);
  color: var(--col-accent);
  border-radius: 7px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 0.93rem;
}

/* =====================================
   RESPONSIVE FLEX PATTERNS
====================================== */
@media (max-width: 900px) {
  .feature-grid { gap: 14px; }
  .feature-grid > div { min-width: 220px; }
}
@media (max-width: 768px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section { flex-direction: column; gap: 22px; }
  .section, section { padding-left:8px; padding-right:8px; margin-bottom:38px; }
}
@media (max-width: 500px) {
  .feature-grid > div {
    padding: 15px 7px 14px 12px;
    font-size: 0.99rem;
  }
  .section, section { padding:10px 3px;margin-bottom:24px; }
}

/* =====================================
   FORM ELEMENTS
====================================== */
input, textarea, select {
  font-family: inherit; font-size:1rem;
  background: var(--col-mid-bg);
  color: var(--col-accent);
  border: 1px solid var(--col-divider);
  border-radius:5px;
  padding:10px 16px;
  margin-bottom: 18px;
  width:100%;
  box-shadow: 0 1px 6px rgba(20,34,56,.08);
  transition: border .13s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--col-accent);
  background: #222633;
  outline:none;
}

/* =====================================
   COOKIE BANNER & MODAL
====================================== */
.cookie-banner {
  position: fixed; left:0; right:0; bottom:0;
  width: 100vw;
  background: linear-gradient(90deg, #232730 89%, #184785 100%);
  color: var(--col-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 23px 8px 20px 8px;
  box-shadow: 0 -6px 32px rgba(24,71,133,0.22);
  font-size: 1.07rem;
  transition: transform .38s cubic-bezier(.81,.05,.53,1), opacity .23s;
  font-family:'Montserrat',Arial,sans-serif;
  gap: 16px;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  background: var(--col-accent);
  color: #232730;
  font-weight: 600;
  padding:10px 18px;
  border-radius: 7px;
  border:none;
  cursor:pointer;
  font-size: 1rem;
  transition: background .17s, color .17s, box-shadow .13s;
}
.cookie-banner .cookie-btn.reject {
  background: #232730;
  color: var(--col-accent);
  border: 1.5px solid var(--col-accent);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #1d1e22;
  color: #FFD900;
}
.cookie-banner .cookie-btn.settings {
  background: var(--col-primary);
  color: var(--col-secondary);
  border: none;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #214c97;
}
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,40,60,0.65);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show { display: flex; }
.cookie-modal {
  background: var(--col-card-bg);
  padding: 34px 28px 23px 28px;
  border-radius: 16px;
  min-width: 310px;
  min-height: 170px;
  max-width: 95vw;
  box-shadow: 0 10px 56px #18478522;
  color: var(--col-secondary);
  font-family: 'Montserrat',Arial,sans-serif;
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  animation: fadeInModal .36s cubic-bezier(.7,.01,.6,1);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.86) translateY(40px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size:1.2rem; color:var(--col-accent);margin-bottom:0px;
}
.cookie-modal label {
  font-size:1rem; display:flex; align-items:center; gap:10px;margin-bottom:12px;color:var(--col-secondary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--col-accent);
  width: 22px; height: 22px;
  margin-right: 7px;
}
.cookie-modal .cookie-btns {
  display:flex; gap:13px; margin-top:16px;justify-content:flex-end;
}
.cookie-modal-close {
  position: absolute;
  top:13px; right:9px;
  background: none;
  color: var(--col-accent);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition:color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #FFD900; }

@media (max-width: 550px) {
  .cookie-modal { padding: 17px 5px 14px 8px; }
}

/* =====================================
   UTILITIES
====================================== */
.mt-0 { margin-top: 0!important; } .mt-8 { margin-top: 8px!important; } .mt-16 { margin-top: 16px!important; }
.mb-0 { margin-bottom:0!important; } .mb-16 { margin-bottom:16px!important; }
.pt-0 { padding-top:0!important; } .pb-0 { padding-bottom:0!important; }
.d-flex { display:flex!important; } .jc-center { justify-content:center; } .ai-center { align-items:center; }
.gap-8 { gap: 8px!important; } .gap-16 { gap:16px!important; }

/* Divider styles for industrial, metallic look */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #21242b 0%, #253551 80%, #E1B93F 100%);
  margin: 32px 0 24px 0;
  border-radius: 8px;
  opacity: 0.47;
}

/* ===============
   Misc Details
================= */
::-webkit-scrollbar { width: 13px; background: #202433; }
::-webkit-scrollbar-thumb { background: #3E4A5D; border-radius:7px; }
::-webkit-scrollbar-thumb:hover { background: #184785; }

/* ===============
   MOBILE / FLEX FIXES
================= */
@media (max-width: 540px) {
  h1 {font-size:1.48rem;}
  h2 {font-size:1.15rem;}
  h3 {font-size:1rem;}
  nav a, .mobile-nav a {font-size:1rem;}
  .testimonial-card {padding: 13px 5px;font-size:.99rem;}
}

/* ===============
   Z-INDEX LAYERS
================= */
header { z-index: 100; }
.mobile-menu, .mobile-menu.show { z-index: 200; }
.cookie-banner { z-index: 4000; }
.cookie-modal-overlay { z-index: 4100; }

/* ===============
   Print Styles
================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display:none!important; }
  main, .container, .content-wrapper, section { background: #fff!important; color: #222!important; }
}

/* END OF Frosty Drift Remonty INDUSTRIAL MODERN THEME */
