/* =====================
   CSS RESET & NORMALIZE
   ===================== */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: #181A1B;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #F7F7FF;
  background: #181A1B;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img, video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
a {
  color: #F26419;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFA600;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* ===================================
   INDUSTRIAL MODERN: COLORS / FONTS
   =================================== */
:root {
  --color-primary: #26547C;
  --color-secondary: #F26419;
  --color-accent: #F7F7FF;
  --color-bg-dark: #181A1B;
  --color-bg-darker: #111214;
  --color-bg-metal: #23262C;
  --color-text: #F7F7FF;
  --color-text-darker: #151517;
  --color-text-light: #F7F7FF;
  --color-muted: #8392a7;
  --color-border: #343741;
  --color-focus: #FFA600;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;600;400&family=Roboto:wght@400;500;700&display=swap');

body {
  background: var(--color-bg-dark);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(22,25,30,0.24);
}

h1 { font-size: 2.4rem; line-height: 1.05; }
h2 { font-size: 1.7rem; line-height: 1.1; }
h3 { font-size: 1.22rem; line-height: 1.15; font-weight: 700;}
h4, h5, h6 { font-size: 1.05rem;}

@media (min-width: 576px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.33rem; }
}
.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 1.12rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

strong, b {
  font-weight: 700;
  color: var(--color-secondary);
}

/* ================
   CONTAINERS
   ================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-darker);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(54, 57, 65, 0.12), 0 1.5px 0 #22272B;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* ================
   NAV & HEADER
   ================ */
header {
  width: 100%;
  background: var(--color-bg-metal);
  box-shadow: 0 2px 18px rgba(30,34,39,0.28);
  position: sticky;
  top: 0;
  z-index: 80;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
  padding: 18px 0 10px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--color-text);
  padding: 8px 8px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-text-light);
}
header nav a img {
  display: inline-block;
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #F26419 85%, #FFA600 100%);
  color: #181A1B;
  border: none;
  border-radius: 13px;
  padding: 13px 26px;
  font-size: 1.09rem;
  margin-left: 18px;
  box-shadow: 0 3px 14px rgba(242,100,25,0.14);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  letter-spacing: 0.01em;
  display: inline-block;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFA600 85%, #F26419 100%);
  box-shadow: 0 7px 22px rgba(242,100,25,0.24), 0 2px 0 #FFA600;
  color: #181A1B;
  transform: translateY(-2px) scale(1.035);
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  background: var(--color-secondary);
  color: #181A1B;
  border: none;
  border-radius: 9px;
  font-size: 2rem;
  padding: 6px 20px 3px 20px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, transform 0.11s;
  z-index: 110;
}
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px var(--color-focus);
}
@media (max-width: 1020px) {
  header nav {
    gap: 0 14px;
    flex-wrap: wrap;
    font-size: 0.98rem;
  }
}
@media (max-width: 870px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: 15px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 400px;
  height: 100vh;
  background: #23262C;
  box-shadow: -4px 0 18px rgba(24,24,24,0.4);
  transform: translateX(120%);
  transition: transform 0.37s cubic-bezier(.53,.02,.38,1.04);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 20px 27px 27px 27px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 20px;
  padding: 2px 16px 4px 8px;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
  background: rgba(242,100,25,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-accent);
  padding: 11px 5px 11px 0;
  border-bottom: 1px solid #333844;
  border-radius: 0;
  transition: color 0.21s, background 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: #181A1B;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}
@media (max-width: 870px) {
  .mobile-menu {
    display: flex;
    transform: translateX(120%);
  }
  .mobile-menu.open {
    display: flex;
    transform: translateX(0);
  }
}

/* Mobile overlay darken screen when open */
.mobile-menu.open::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 26, 27, 0.78);
  z-index: 140;
  pointer-events: auto;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.22s;
}

/* =================
   HERO SECTION
   ================= */
.hero {
  background: linear-gradient(105deg, #23262c 70%, #181A1B 100%);
  border-radius: 24px;
  box-shadow: 0 5px 42px rgba(38,84,124,0.12) inset;
  margin-top: 18px;
  margin-bottom: 60px;
}
.hero .container {
  padding: 44px 6vw 44px 6vw;
}
.hero h1 {
  color: var(--color-accent);
  text-shadow: 0 3px 24px #181A1B, 0 0.5px 0 var(--color-secondary);
  margin-bottom: 20px;
  font-size: 2.3rem;
}
.hero .subheadline {
  font-size: 1.17rem;
  color: var(--color-secondary);
  margin-bottom: 24px;
}
.hero .cta-btn {
  margin-top: 12px;
}
@media (max-width: 660px) {
  .hero {
    border-radius: 0 0 18px 18px;
    margin-top: 0;
  }
  .hero .container {
    padding: 30px 3vw 30px 3vw;
  }
}

/* =================
   FLEXBOX LAYOUTS
   ================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-metal);
  border-radius: 13px;
  box-shadow: 0 2.5px 11px rgba(30,36,41,0.09);
  padding: 30px 18px 18px 18px;
}
.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;
  border-radius: 13px;
  background: #F7F7FF;
  color: #181A1B;
  box-shadow: 0 2.5px 11px rgba(30,36,41,0.18);
  margin-bottom: 20px;
  border-left: 7px solid var(--color-secondary);
  transition: transform 0.15s, box-shadow 0.15s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 9px 24px rgba(38,84,124,0.22);
}
.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =================
   SERVICE CARDS
   ================= */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-card {
  background: var(--color-bg-metal);
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(34,40,48,0.16);
  flex: 1 0 262px;
  min-width: 260px;
  padding: 28px 22px 21px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-primary);
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(38,84,124,0.17);
  border-left: 5px solid var(--color-secondary);
  transform: translateY(-2.5px) scale(1.015);
}
.service-card h3 {
  color: var(--color-accent);
  font-size: 1.29rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 13px;
}
.service-card span {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.09rem;
  margin-top: 1.5rem;
}

/* ================
   LISTS/ICON-LISTS
   ================ */
ul li, ol li {
  line-height: 1.7;
  margin-bottom: 11px;
  padding-left: 0px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: var(--color-text);
}
ul li img, ol li img {
  height: 26px;
  width: 26px;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(44%) brightness(95%) drop-shadow(0 2px 2px #20242888);
}
.section ul {
  margin-top: 10px;
  margin-bottom: 7px;
}
.section ul li {
  color: var(--color-accent);
  background: none;
}

/* ================
   TEXT SECTIONS
   ================ */
.text-section {
  background: none;
  color: var(--color-text);
  padding: 0 0 12px 0;
}
.text-section ul {
  margin-top: 10px;
  margin-bottom: 7px;
}
.text-section a {
  color: var(--color-secondary);
  text-decoration: underline;
  word-break: break-all;
}

/* ================
   MAP PLACEHOLDER
   ================ */
.map-placeholder {
  background: #23262c;
  border-radius: 11px;
  color: #F26419;
  font-weight: 700;
  padding: 17px 13px;
  margin-top: 17px;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: 0 1.5px 7px rgba(38,84,124,0.12);
}

/* ================
   FOOTER
   ================ */
footer {
  background: #22252b;
  color: var(--color-accent);
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1.5px solid #343741;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.03rem;
  padding: 5px 2px 5px 2px;
  border-radius: 7px;
  transition: background 0.2s, color 0.21s;
}
footer nav a:hover, footer nav a:focus {
  background: #F26419;
  color: #181A1B;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
footer .text-section {
  color: var(--color-accent);
}
footer img[alt*='Instagram'],
footer img[alt*='Facebook'] {
  width: 30px;
  height: 30px;
  margin-right: 13px;
  border-radius: 6px;
  filter: grayscale(70%) contrast(1.2);
  cursor: pointer;
  transition: filter 0.15s, box-shadow 0.14s;
}
footer img[alt*='Instagram']:hover,
footer img[alt*='Facebook']:hover {
  filter: grayscale(10%) saturate(2) drop-shadow(0 2px 7px var(--color-secondary));
}
footer .text-section img {
  width: 63px;
  height: auto;
  margin-bottom: 6px;
}
footer > section > .container > .content-wrapper > div:last-child {
  width: 100%;
  margin-top: 20px;
  font-size: 0.98rem;
  color: var(--color-muted);
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
}
@media (max-width: 660px) {
  footer {
    padding-top: 10px;
  }
  footer nav {
    gap: 10px;
  }
}

/* ===============
   BUTTONS, FORMS
   =============== */
button,
input[type='button'],
input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--color-secondary);
  color: #181A1B;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.12s;
  box-shadow: 0 1px 7px rgba(242,100,25,0.09);
}
button:hover,
input[type='button']:hover,
input[type='submit']:hover {
  background: #FFA600;
  color: #181A1B;
  box-shadow: 0 4px 14px rgba(242,100,25,0.22);
}
button:active {
  transform: scale(0.97);
}

/* Links as buttons inside cookie/call-to-action banners */
a.cta-btn, .cookie-banner-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 13px;
  padding: 13px 26px;
  font-size: 1.09rem;
  background: linear-gradient(90deg, #F26419 85%, #FFA600 100%);
  color: #181A1B;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(242,100,25,0.10);
  margin-right: 18px;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
}
a.cta-btn:focus {
  box-shadow: 0 0 0 2.5px var(--color-focus);
}

/* ====================
   SPACING AND FLEX RULES
   ==================== */
.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;
}

/* =======
RESPONSIVE DESIGN
======== */
@media (max-width: 1024px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 660px) {
  .card-container, .content-grid, .service-cards {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .feature-item { flex-wrap: wrap; }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
}

/*  ======= COOKIE CONSENT BANNER & MODAL =======  */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 250;
  background: #23262c;
  color: var(--color-accent);
  box-shadow: 0 -4px 20px rgba(30,36,52,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 6vw 22px 6vw;
  border-radius: 15px 15px 0 0;
  font-size: 1rem;
  animation: cookie-slide-up 0.37s cubic-bezier(.42,1.65,.38,.98) 1;
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 2 1 300px;
  font-size: 1rem;
}
.cookie-banner-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner-btn {
  padding: 12px 15px;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #F26419;
  color: #181A1B;
  border-radius: 9px;
  border: none;
  box-shadow: 0 2px 8px rgba(242,100,25,0.09);
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  font-size: 1rem;
}
.cookie-banner-btn.settings {
  background: none;
  color: var(--color-secondary);
  border: 1.2px solid var(--color-secondary);
  margin-left: 7px;
}
.cookie-banner-btn:hover {
  background: #FFA600;
  color: #181A1B;
}
.cookie-banner-btn.settings:hover {
  background: #181A1B;
  color: #FFA600;
  border-color: #FFA600;
}
@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 3vw 22px 3vw;
    font-size: 0.95rem;
    gap: 14px;
  }
  .cookie-banner-btns { gap: 7px; }
}

/*  COOKIE PREFERENCES MODAL  */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,26,27,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-appear 0.25s cubic-bezier(.36,1.42,.46,1.01) 1;
}
@keyframes modal-appear {
  from { opacity:0; transform: scale(0.97); }
  to   { opacity:1; transform: scale(1); }
}
.cookie-modal {
  background: #F7F7FF;
  color: #181A1B;
  border-radius: 15px;
  min-width: 320px;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 9px 32px rgba(42,52,68,0.16);
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  font-size: 1.8rem;
  color: #26547C;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 3px 14px;
  transition: background 0.15s;
}
.cookie-modal-close:hover { background: #e5e8ee; }

.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.33rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  font-size: 1.03rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F26419;
  width: 22px;
  height: 22px;
}
.cookie-category .locked {
  color: #26547C;
  font-size: 1rem;
  background: #EAEAEA;
  border-radius: 6px;
  padding: 3px 8px;
  margin-left: 10px;
  font-weight: 500;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 10px 17px;
  font-size: 1rem;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 7vw 22px 7vw;
    min-width: 0;
    width: 95vw;
  }
}

/* ================
   ANIMATIONS
   ================ */
.section, .service-card, .testimonial-card, .cta-btn, .card {
  transition: box-shadow 0.23s, transform 0.17s, background 0.22s, border-color 0.21s;
}
.section:hover, .card:hover {
  box-shadow: 0 10px 40px rgba(38,84,124,0.13), 0 2px 0 #23262C;
}
a, .cta-btn, .service-card, .testimonial-card, button, .cookie-banner-btn {
  transition: background 0.20s, color 0.16s, box-shadow 0.14s, border 0.17s, transform 0.15s;
}

/* ================
   UTILITIES
   ================ */
.text-center        { text-align: center; }
.text-right         { text-align: right;  }
.text-left          { text-align: left;   }
.mt-0 {margin-top:0!important} .mb-0 {margin-bottom:0!important}
.mt-2 {margin-top:20px!important;} .mb-2 {margin-bottom:20px!important;}
.hidden { display:none!important; }
.visible { display:inline!important; }

/* ================
   PRINT/ACCESSIBILITY
   ================ */
@media print {
  header, footer, .cookie-banner { display: none !important; }
}

/* ================
   HIGH CONTRAST IN TESTIMONIALS
   ================ */
.testimonials .testimonial-card {
  background: #F7F7FF;
  color: #181A1B;
  border-left: 7px solid #F26419;
}

/* ================
   THANK YOU PAGE BUTTON
   ================ */
.text-section .cta-btn {
  margin-top: 20px;
}

/* ================
   MISC/BASIC HTML ELEMENTS
   ================ */
blockquote {
  margin: 0;
  padding: 0;
  quotes: "\201C" "\201D";
  font-size: 1.09rem;
  color: #23262c;
  font-style: italic;
  background: none;
}
blockquote:before { content: open-quote; color: #F26419; font-size: 2rem; position: relative; top: 6px; }
blockquote:after { content: close-quote; color: #F26419; font-size: 2rem; position: relative; bottom: 2px; }

hr {
  border: none;
  border-top: 1.4px solid var(--color-border);
  margin: 32px 0;
}

/* ===================
   END OF CSS FILE
   =================== */
