/* --------------------------------------------------
   CSS RESET & NORMALIZE (Mobile-first)
-------------------------------------------------- */
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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #121820; /* Deep industrial blue-black */
  color: #F9F8F4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #7AC143;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  text-decoration: underline;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F9F8F4;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}

/* --------------------------------------------------
   BRAND COLORS & MATERIAL PALETTE
-------------------------------------------------- */
:root {
  --primary: #193464;
  --secondary: #7AC143;
  --accent: #F9F8F4;
  --industrial-bg-dark: #181D25;
  --industrial-bg-light: #242F38;
  --industrial-steel-light: #5D6770;
  --text-on-dark: #F9F8F4;
  --text-on-light: #193464;
  --danger: #c13d2b;
}

/* --------------------------------------------------
   TYPOGRAPHY SCALE & INDUSTRIAL STYLE
-------------------------------------------------- */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
}
.brand, .brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  color: var(--secondary);
  text-transform: uppercase;
}

.cta-btn, .secondary-cta, button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Headings brightness for dark mode */
h1, h2, h3, h4, h5, h6 {
  text-shadow: 0 2px 8px rgba(25,52,100,0.22);
}

/* --------------------------------------------------
   LAYOUT CONTAINERS & FLEXBOX ONLY
-------------------------------------------------- */
header, footer, main {
  width: 100%;
}
header {
  background: var(--industrial-bg-dark);
  border-bottom: 3px solid var(--industrial-steel-light);
  box-shadow: 0 4px 18px rgba(25,52,100,0.08);
  position: relative;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-svg {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
nav {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav li {
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--accent);
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

.cta-btn,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 32px;
  background: linear-gradient(90deg, #2C4257 0%, #364A67 48%, #1A282F 100%);
  color: var(--secondary);
  border-radius: 8px;
  font-weight: 700;
  outline: none;
  box-shadow: 0 2px 10px rgba(25,52,100,0.18);
  margin-left: 22px;
  border: 2px solid var(--secondary);
  text-transform: uppercase;
  transition: background 0.23s, color 0.18s, border-color 0.23s, transform 0.18s;
}
.cta-btn:hover,
.secondary-cta:hover,
.cta-btn:focus,
.secondary-cta:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.045);
}
.secondary-cta {
  margin-left: 0;
  margin-top: 20px;
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.secondary-cta:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* --------------------------------------------------
   HERO/BANNER & SECTIONS
-------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #232833 65%, #242F38 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  min-height: 340px;
  padding: 54px 20px 46px 20px;
  margin-bottom: 40px;
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.3rem;
}
.hero p {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Section wrapper spacing - critical */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--industrial-bg-dark);
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(25,52,100,0.09);
}

section:last-child {
  margin-bottom: 0;
}

.features,
.services,
.pricing,
.contact,
.contact-form,
.contact-info,
.location,
.faq,
.thank-you {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 60px auto;
  padding: 40px 16px;
  background: var(--industrial-bg-dark);
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(25,52,100,0.09);
}

/* --------------------------------------------------
   FLEX CONTAINERS & GAPS (MANDATORY)
-------------------------------------------------- */
.card-container, .feature-grid, .content-grid, .footer-nav ul, .usp-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid {
  gap: 32px;
}

.card {
  margin-bottom: 20px;
  min-width: 260px;
  background: var(--industrial-bg-light);
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(25,52,100,0.09);
  padding: 25px;
  border: 1.5px solid var(--industrial-steel-light);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, border 0.22s, transform .15s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(25,52,100,0.16);
  border: 1.5px solid var(--secondary);
  transform: translateY(-2px) scale(1.015);
}

.testimonial-card, blockquote {
  background: #F6F7F9;
  color: #193464;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(25,52,100,0.09);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 7px solid var(--secondary);
  font-style: italic;
  position: relative;
}
.testimonial-card cite, blockquote cite {
  display: block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: .01em;
}
blockquote {
  margin: 0 0 20px 0;
  font-size: 1.075rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Extra lists for USPs, Services */
.usp-list,
.service-list {
  padding-left: 0;
  gap: 18px;
}
.usp-list li, .service-list li {
  padding: 14px 0 14px 32px;
  background: none;
  border-left: 3.5px solid var(--secondary);
  position: relative;
  font-size: 1.04rem;
  color: #e0e1e4;
  margin-bottom: 4px;
}
.usp-list li:before, .service-list li:before {
  content: '\2713';
  color: var(--secondary);
  position: absolute;
  left: 5px;
  font-weight: 700;
}

/* FAQ Section */
.faq {
  margin-top: 30px;
}
.faq ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq li {
  background: var(--industrial-bg-light);
  color: var(--accent);
  padding: 15px 18px;
  border-radius: 7px;
  font-size: 1.025rem;
}

/* Highlight & Notification Card */
.highlight {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 30px 0;
  box-shadow: 0 1px 8px rgba(25,52,100,0.07);
  border-left: 5px solid var(--secondary);
  font-size: 1.07rem;
}

/* --------------------------------------------------
   TABLES FOR PRICING
-------------------------------------------------- */
.price-table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--industrial-bg-light);
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(25,52,100,0.05);
  font-size: 1.06rem;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #364A67;
}
.price-table th {
  background: var(--secondary);
  color: var(--primary);
  text-align: left;
  font-size: 1.07rem;
  font-weight: 700;
}
.price-table td {
  color: var(--accent);
  background: transparent;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------
   CONTACT & ADDRESS
-------------------------------------------------- */
.contact-box,
.location address {
  background: var(--industrial-bg-light);
  color: var(--accent);
  padding: 20px 24px;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 1px 7px rgba(25,52,100,0.07);
  border-left: 4px solid var(--secondary);
}
.contact-box a, .location address a {
  color: var(--secondary);
  text-decoration: underline;
}
.map-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.hours, .transport {
  background: var(--industrial-bg-light);
  color: var(--accent);
  padding: 13px 18px;
  border-radius: 8px;
  margin: 12px 0 0 0;
  font-size: 1.04rem;
}

/* Contact Info List */
.contact-info ul,
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.contact-short {
  padding: 12px 18px;
  background: var(--industrial-bg-light);
  border-radius: 7px;
}
.contact-info li strong {
  color: var(--secondary);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #171d24;
  border-top: 2px solid var(--industrial-steel-light);
  padding: 32px 8px 12px 8px;
  margin-top: 60px;
  box-shadow: 0 -2px 10px rgba(25,52,100,0.11);
  position: relative;
  z-index: 3;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: .85;
  transition: color 0.2s, opacity 0.18s;
}
.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}
.footer-info {
  color: #a6acb6;
  text-align: center;
  font-size: .92rem;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------
   MOBILE MENU (BURGER)
-------------------------------------------------- */
.mobile-menu-toggle {
  display: inline-flex;
  background: transparent;
  color: var(--secondary);
  border-radius: 50%;
  border: 2px solid var(--secondary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  z-index: 33;
  transition: background 0.15s, color 0.13s, border-color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 390px;
  height: 100vh;
  background: #171d24ed;
  box-shadow: -6px 0 32px rgba(25,52,100,0.58);
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(.62,.03,.98,.24), box-shadow 0.22s;
  z-index: 1002;
  padding: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -8px 0 32px 16px rgba(25,52,100,0.33);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 2.0rem;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
  z-index: 1005;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 72px;
}  
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 16px 24px;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.075rem;
  letter-spacing: .04em;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1023px) {
  .brand span { font-size: 1rem; }
  .main-nav { gap: 8px; }
  .cta-btn { margin-left: 10px; font-size: 1rem; }
}
@media (max-width: 900px) {
  .footer-nav ul { gap: 14px; }
}

/* Show/hide desktop/mobile menu buttons */
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Overlay for open mobile menu */
.mobile-menu-backdrop {
  display: none;
}
.mobile-menu-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--industrial-bg-light);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 20px 24px 20px;
  z-index: 1200;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 32px rgba(25,52,100,0.16);
  font-size: 1rem;
  animation: banner-slideup 0.55s cubic-bezier(.7,.05,.7,1.32);
}
@keyframes banner-slideup {
  0% { transform: translateY(124%); opacity: 0; }
  77% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 11px 28px;
  margin: 0 6px 0 0;
  font-size: 1.03rem;
  transition: background 0.19s, color 0.18s, transform 0.13s;
  outline: none;
  cursor: pointer;
}
.cookie-btn.reject {
  background: var(--danger);
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.04);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,29,37,0.86);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadein .35s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--industrial-bg-dark);
  color: var(--accent);
  border-radius: 12px;
  padding: 36px 28px 34px 28px;
  box-shadow: 0 3px 42px rgba(25,52,100,0.23);
  min-width: 320px;
  max-width: 95vw;
}
.cookie-modal-content h3 {
  margin-bottom: 22px;
  color: var(--secondary);
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.025rem;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 24px;
  background: #404c58;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  outline: none;
  margin-right: 5px;
  transition: background 0.2s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: transform 0.22s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
  background: var(--primary);
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 22px;
  outline: none;
  transition: color 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--secondary);
}

/* --------------------------------------------------
   INTERACTIVE: BUTTONS, LINKS, FORMS
-------------------------------------------------- */
button, .cta-btn, .secondary-cta, .cookie-btn {
  transition: background 0.19s, color 0.18s, box-shadow 0.14s;
  cursor: pointer;
  outline: none;
}
button:focus, .cta-btn:focus, .secondary-cta:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* --------------------------------------------------
   SCROLLBAR (WEBKIT/CHROME)
-------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #181D25;
}
::-webkit-scrollbar-thumb {
  background: #292F38;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* --------------------------------------------------
   RESPONSIVE DESIGN (Mobile First, Flex Direction)
-------------------------------------------------- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section, section, .features, .services, .pricing, .contact, .contact-form, .location, .faq, .thank-you {
    padding: 24px 6px;
    border-radius: 10px;
    margin-bottom: 34px;
  }
  header, .header-inner {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
    padding: 8px 0 8px 0;
  }
  .main-nav {
    flex-direction: column;
    gap: 4px;
    padding: 0;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .content-grid, .feature-grid, .card-container, .testimonial-card, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-box, .contact-short, .faq li, .highlight {
    padding: 13px 8px;
    font-size: 1rem;
  }
  .hero {
    min-height: 200px;
    padding: 32px 8px 32px 8px;
  }
  .cta-btn, .secondary-cta {
    padding: 0 16px;
    min-width: 38px;
    min-height: 36px;
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .footer-info { font-size: .80rem; }
  .hero h1 { font-size: 1.35rem; }
}

/* --------------------------------------------------
   MISC & FINE DETAILS FOR "INDUSTRIAL_MODERN"
-------------------------------------------------- */
.icon-svg, .logo-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-svg svg, .logo-svg svg {
  filter: drop-shadow(0 2px 12px rgba(122,193,67,0.16));
}

.card, .testimonial-card, .contact-box, .highlight {
  border: 1.5px solid var(--industrial-steel-light);
}

.card {
  background: #232933;
}

.card .icon-svg {
  margin-bottom: 6px;
}

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

input, textarea {
  border: 1.5px solid var(--industrial-steel-light);
  border-radius: 7px;
  background: #1e2730;
  color: var(--accent);
  font-size: 1.03rem;
  padding: 10px 14px;
  margin-bottom: 10px;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
}

hr {
  border: none;
  border-bottom: 1px solid #4d5661;
  margin: 18px 0;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--primary);
}
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* --------------------------------------------------
   PRINT (BASIC): Hide navigation, cookie, mobile overlays
-------------------------------------------------- */
@media print {
  .main-nav, .footer-nav, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section, section { box-shadow: none; border: none; }
  body { background: #fff; color: #222; }
}
