/* 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;
  height: 100%;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #181D22;
  color: #F8F9FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F6B54E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #F8F9FA;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* LAYOUT CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.text-section {
  max-width: 800px;
}

/* MAIN NAVIGATION HEADER */
header {
  background: #181D22;
  border-bottom: 2px solid #32363B;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px;
}
.logo img {
  height: 44px;
  width: auto;
  filter: grayscale(25%) drop-shadow(0 2px 4px #05080a33);
  transition: filter 0.2s;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  color: #F8F9FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F6B54E;
  border-bottom: 2px solid #F6B54E;
}

/* CTA BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  background: #32363B;
  color: #F8F9FA;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.10s;
  box-shadow: 0 2px 12px 0 #0e172276, 0 1.5px 0 #464B51 inset;
  margin-top: 10px;
}
.btn-primary {
  background: #F6B54E;
  color: #103554;
  box-shadow: 0 2px 14px -2px #f6b54e44, 0 1.5px 0 #C99429 inset;
}
.btn-primary:hover, .btn-primary:focus {
  background: #103554;
  color: #F8F9FA;
  box-shadow: 0 3px 16px -2px #10355466, 0 2px 0 #F6B54E inset;
}
.btn:hover, .btn:focus {
  background: #103554;
  color: #F6B54E;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px -6px #F6B54E66, 0 2px 0 #464B51 inset;
}

/* BURGER MENU / MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F6B54E;
  cursor: pointer;
  z-index: 200;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #F8F9FA;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #181D22fa;
  box-shadow: 2px 0 24px #000a;
  z-index: 3000;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.40s cubic-bezier(.77,0,.18,1), opacity 0.33s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 32px 32px 0 0;
  background: none;
  border: none;
  color: #F8F9FA;
  font-size: 2.5rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 3150;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6B54E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin-top: 56px;
  padding: 0 44px;
}
.mobile-nav a {
  color: #F8F9FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 18px 0 6px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.08em;
  width: 100%;
  transition: color 0.18s, border-bottom 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6B54E;
  border-bottom: 2px solid #F6B54E;
}

/* HERO SECTIONS & HEADINGS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section .container > h2, section .container > h1 {
  margin-bottom: 16px;
}

/* FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23272b;
  border-radius: 14px;
  box-shadow: 0 4px 18px -4px #0e1722b8, 0 2.5px 0 #32363B inset;
  padding: 28px 32px 24px 32px;
  min-width: 220px;
  max-width: 293px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border-left: 4px solid #F6B54E;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.12s;
}
.feature-item img {
  height: 42px;
  width: 42px;
  filter: brightness(1.2) grayscale(0.15) drop-shadow(1px 4px 9px #10355425);
}
.feature-item h3 {
  color: #F6B54E;
  margin-bottom: 2px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px -2px #F6B54E88, 0 2px 0 #F6B54E inset;
  border-left: 4px solid #103554;
  transform: translateY(-5px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #21252b;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px 0 #070d1499;
  padding: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.team-member {
  background: #23272b;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 24px 28px 20px 28px;
  flex: 1 1 270px;
  box-shadow: 0 3.5px 16px -3px #29314299;
  border-left: 4px solid #103554;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.10s;
}
.team-member:hover, .team-member:focus-within {
  border-left: 4px solid #F6B54E;
  box-shadow: 0 7px 33px -5px #F6B54E66;
  transform: translateY(-2px) scale(1.02);
}

/* SERVICE LIST */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.service-list li {
  background: #23272b;
  border-radius: 10px;
  padding: 28px 32px 20px 32px;
  box-shadow: 0 2px 11px -3px #10355444;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 12px;
  border-left: 4px solid #F6B54E;
  transition: box-shadow 0.17s, border-color 0.17s, transform 0.10s;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 40px -7px #F6B54E44, 0 2px 0 #103554 inset;
  border-left: 4px solid #103554;
  transform: translateY(-2px) scale(1.01);
}
.service-list .price {
  color: #F6B54E;
  font-size: 1.08rem;
  font-weight: 600;
  float:right;
  margin-left: 16px;
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F9FA;
  color: #181D22;
  border-radius: 14px;
  min-width: 260px;
  max-width: 425px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px -4px #10355412, 0 2px 0 #F6B54E inset;
  border: 1px solid #E5E5E5;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.12s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #181D22;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #103554;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  align-self: flex-end;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px -7px #F6B54E33, 0 2px 0 #F6B54E inset;
  border-color: #F6B54E;
  transform: scale(1.02);
  color: #181D22;
}

.client-logos ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 10px;
}
.client-logos li {
  list-style: none;
  display: flex;
  align-items: center;
}
.client-logos img {
  filter: grayscale(50%) contrast(1.1);
  opacity: 0.92;
  width: 70px;
  height: auto;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logos img:hover, .client-logos img:focus {
  filter: none;
  opacity: 1;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.news-list article {
  background: #23272b;
  padding: 22px 30px 18px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 18px -6px #10355444;
  margin-bottom: 20px;
  border-left: 4px solid #F6B54E;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.09s;
}
.news-list article:hover, .news-list article:focus-within {
  border-left: 4px solid #103554;
  box-shadow: 0 7px 32px -9px #F6B54E33;
  transform: scale(1.01);
}
.news-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  font-size: 1rem;
  color: #F6B54E;
}

/* CONTACT & MAP DETAILS */
.contact-details, .location-map {
  flex: 1 1 270px;
  background: #23272b;
  border-radius: 10px;
  box-shadow: 0 2px 14px -3px #10355433;
  padding: 28px;
  margin-bottom: 20px;
}
.contact-details ul, .location-map ul {
  margin-top: 14px;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.location-map img {
  height: 32px;
  width: 32px;
  margin-bottom: 6px;
  filter: grayscale(19%) drop-shadow(2px 8px 12px #10355434);
}
.location-map p {
  color: #F6B54E;
  font-size: 1.08rem;
}

/* FOOTER */
footer {
  background: #1C2024;
  border-top: 2px solid #32363B;
  padding-top: 38px;
  padding-bottom: 18px;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer img {
  height: 38px;
  width: auto;
  opacity: 0.94;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F6B54E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F8F9FA;
}
.contact-footer p, .contact-footer a {
  color: #cacdcf;
  font-size: 1rem;
  margin-bottom: 5px;
  text-decoration: none;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.brand-credits p {
  font-size: 0.97rem;
  color: #7d8894;
  margin-top: 10px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #21272b;
  color: #F8F9FA;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 20px 24px 20px;
  border-top: 4px solid #F6B54E;
  box-shadow: 0 -9px 42px -7px #181D22a8;
  z-index: 3500;
  transition: opacity 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 1rem;
  color: #F8F9FA;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 12px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #32363B;
  color: #F8F9FA;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
}
.cookie-btn.accept {
  background: #F6B54E;
  color: #181D22;
  box-shadow: 0 1.5px 7px 0 #F6B54E44;
}
.cookie-btn.reject {
  background: #23272b;
  color: #F6B54E;
}
.cookie-btn.settings {
  background: #21272b;
  color: #F6B54E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F6B54E;
  color: #103554;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #103554;
  color: #F8F9FA;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,29,34,0.87);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: #F8F9FA;
  color: #181D22;
  border-radius: 18px;
  box-shadow: 0 6px 28px -3px #10355466, 0 2.5px 0 #F6B54E inset;
  padding: 34px 32px 28px 32px;
  width: 98%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #103554;
  font-weight: 700;
  font-size: 1.25rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  color: #181D22;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F6B54E;
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-option label {
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #181D22;
}
.cookie-option input[type="checkbox"]:disabled + label {
  color: #103554;
  font-weight: 700;
}
/* MODAL BUTTONS */
.cookie-modal .cookie-btn-group {
  margin-top: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1110px) {
  .container { max-width: 98vw; }
}
@media (max-width: 980px) {
  .main-nav { gap: 22px; }
  .team-grid, .feature-grid, .card-container {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid { gap: 14px; }
  .feature-item, .team-member { min-width: 180px; padding: 22px 18px; }
  .service-list li { padding: 18px; }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .main-nav { display: none; }
  .logo img { height: 34px; }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 10px;
  }
  section {
    padding: 32px 8px;
    margin-bottom: 44px;
  }
  .feature-grid, .team-grid, .news-highlights ul, .client-logos ul, .card-container, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .team-member, .service-list li, .card, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 18px 14px 16px 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .container {
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav { gap:18px; }
  .cookie-modal-dialog {
    padding: 18px 5px 14px 10px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.21rem; }
  .btn, .btn-primary, .cookie-btn {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
  .footer-nav { gap: 10px; flex-direction: column; }
  .mobile-nav { font-size:1.07rem; gap:14px; }
  .logo img { height: 27px; }
}

/* FORM STYLE (if used in future) */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #23272b;
  color: #F8F9FA;
  border: 1.5px solid #32363B;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  transition: border 0.15s, background 0.15s;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1.5px solid #F6B54E;
  background: #181D22;
}

/* UTILITY CLASSES */
.mt-0 { margin-top: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mt-3 { margin-top: 32px!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 8px!important; }
.mb-2 { margin-bottom: 16px!important; }
.mb-3 { margin-bottom: 32px!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.text-accent { color:#F6B54E!important; }
.text-dark { color: #181D22!important; }
.bg-primary { background:#103554!important; color: #F8F9FA!important; }
.bg-accent { background:#F6B54E!important; color: #181D22!important; }

/* SCROLLBAR STYLING FOR DARK UI */
body::-webkit-scrollbar {
  width: 12px;
  background: #23272b;
}
body::-webkit-scrollbar-thumb {
  background: #32363B;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #F6B54E;
}

/* Micro-interactions and animations */
.btn, .btn-primary, .feature-item, .team-member, .service-list li, .testimonial-card, .card, .news-list article {
  transition: box-shadow 0.18s, transform 0.13s, border-color 0.19s, background 0.16s, color 0.16s;
}

/* Accessibility helpers */
:focus {
  outline: 2px solid #F6B54E;
  outline-offset: 0.5px;
}

::selection {
  background: #F6B54E;
  color: #181D22;
}

/* Hide visually (for cookie modal, burger etc) */
.hidden { display: none!important; }

/* Hide main menu on mobile */
@media (max-width: 900px) {
  .main-nav { display: none !important; }
}

/* Show cookie banner above footer */
body { padding-bottom: 72px; }

/* Fix for z-index overlap with sticky header */
header, .mobile-menu { z-index: 3050; }

/* Industrial Modern flavor accents */
.card, .feature-item, .team-member, .service-list li, .news-list article, .contact-details, .location-map {
  border-radius: 10px;
  border-left: 4px solid #F6B54E;
  box-shadow: 0 4px 24px 0 #10355422, 0 1.5px 0 #32363B inset;
}

/* End of style.css */
