/* ===== RESET & NORMALIZE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #101926;
  color: #E5EAF2;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
a {
  color: #E5EAF2;
  text-decoration: none;
  transition: color .22s cubic-bezier(.5,.5,0,1);
}
a:focus,
a:hover {
  color: #B4C5E4;
}
ul {
  list-style: none;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E5EAF2;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
.section h2 { color: #F7FAFE; }

p, li, td, th {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #D5DBE2;
}
strong { color: #F4F4F4; font-weight: 600; }

hr { border: none; border-top: 1px solid #313A44; margin: 32px 0; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ===== INDUSTRIAL MODERN COLORS/BRAND ===== */
:root {
  --primary: #274287; /* Main blue */
  --secondary: #0D1A2F; /* Brand dark/navy */
  --accent: #E5EAF2; /* Near-white blue */
  --urban-grey: #222933;
  --concrete: #313A44;
  --steel: #7C8592;
  --metal: #B4C5E4;
  --danger: #572f34;
  --success: #29584a;
  --shadow: 0 2px 16px 0 rgba(26,32,45,0.10);
  --card-radius: 12px;
  --card-shadow: 0 2px 10px 0 rgba(34,41,51,0.14),0 1.5px 4px 0 rgba(0,0,0,0.05);
  --input-bg: #222933;
  --input-fg: #E5EAF2;
  --button-hover: #4766b4;
  --focus: #5976ae;
}


/* ===== LAYOUT/SECTIONS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--card-radius);
  background: #1A2231;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(110deg, var(--secondary) 60%, var(--primary) 100%) no-repeat;
  min-height: 360px; display: flex; align-items: center;
  margin-bottom: 60px; padding: 50px 0 42px 0;
}
.hero h1 { color: #FFF; text-transform: uppercase; letter-spacing: 0.03em; font-size: 2.2rem; }
.hero .subheadline {
  color: var(--metal);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 22px;
}

.features,
.services,
.about,
.pricing,
.location,
.legal,
.cta,
.contact,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #171F2B;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}

/* Utility Flexbox Containers */
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.content-grid { gap: 20px; }

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

.card {
  margin-bottom: 20px;
  background: #202635;
  border: 1.5px solid #293042;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  padding: 28px 22px;
  min-width: 275px;
  flex: 1 1 310px;
  transition: box-shadow .22s cubic-bezier(.5,.5,0,1), transform .22s cubic-bezier(.5,.5,0,1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(39,66,135,0.14),0 2.5px 7px 0 rgba(0,0,0,0.11);
  transform: translateY(-6px) scale(1.01);
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F7F8FA;
  color: #1B2536;
  border-left: 5px solid var(--primary);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 10px 0 rgba(21,27,39,0.10);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 530px;
  width: 100%;
}

.testimonial-card p {
  color: #212D3B;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span,
.testimonial-card strong { color: #274287; }

.card-container > *,
.card-grid > *,
.content-grid > * {
  margin-bottom: 20px;
}

/* ===== TABLES & LISTS ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #202635;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
th,td {
  padding: 16px 14px;
  border-bottom: 1px solid #1f252f;
  text-align: left;
  color: #E5EAF2;
}
th { background: #212A3A; font-family: 'Montserrat', Arial, sans-serif; font-size: 1.08rem; letter-spacing: 0.02em; color: #F7FAFE; }
tr:last-child td { border-bottom: none; }

table ul {
  list-style: disc inside;
  margin: 10px 0;
  color: #B4C5E4;
  font-size: 1rem;
}

.section ul, .features ul, .about ul, .pricing ul, .services ul {
  margin: 17px 0 0 25px;
}
.section ul li,
.features ul li,
.about ul li,
.pricing ul li,
.services ul li {
  margin-bottom: 12px;
  list-style-type: disc;
}

.contact-info, .contact-info-preview {
  background: #212A3A;
  color: #A6ADC2;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 15px;
  font-size: 1rem;
}


/* ===== BUTTONS & MICRO INTERACTIONS ===== */
.cta-button, button, .mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  border: none;
  background: linear-gradient(90deg, var(--primary) 70%, #314985 100%);
  color: #F7FAFE;
  padding: 13px 34px;
  font-size: 1.07rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .18s cubic-bezier(.66,.33,0,1), box-shadow .20s;
  box-shadow: 0 2px 12px 0 rgba(20,39,70,0.15); 
}
.cta-button:hover, button:hover, .mobile-nav a:hover,
.cta-button:focus, button:focus, .mobile-nav a:focus {
  background: var(--button-hover);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(36,61,110,.19);
}

.cta-button {
  min-width: 170px;
  margin-top: 10px;
  align-self: flex-start;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
}


/* ===== HEADER & NAVIGATION ===== */
header {
  background: #171D28;
  box-shadow: 0 2px 8px 0 rgba(14,23,45,0.10);
  position: relative;
  z-index: 100;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 74px;
  padding: 8px 0px;
}
.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #DEE5F0;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 6px 3px;
  position: relative;
  transition: color .18s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width .22s cubic-bezier(.39,1,.44,1.04);
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--metal);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.header-content a img {
  height: 42px;
  width: auto;
  margin-right: 22px;
}

.header-content .cta-button {
  margin-left: 28px;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #DEE5F0;
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  transition: color .18s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--primary);
}

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1201;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111826ee;
  transition: transform .38s cubic-bezier(.88,0,.22,1);
  transform: translateX(-100vw);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: mobile-slide-in .38s 1 cubic-bezier(.77,0,.18,1);
}
@keyframes mobile-slide-in {
  0% { transform: translateX(-100vw); }
  100% { transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #9CADC9;
  font-size: 2.4rem;
  padding: 12px 25px;
  cursor: pointer;
  align-self: flex-end;
  transition: color .16s;
  margin-top: 19px;
  margin-right: 17px;
  z-index: 1203;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--primary);
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 22px 32px;
  margin-top: 12px;
}
.mobile-nav a {
  background: none;
  font-size: 1.15rem;
  color: var(--metal);
  padding: 14px 0px 14px 0px;
  border-bottom: 1px solid #262E41;
  border-radius: 0;
  font-weight: 600;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #111726;
  color: #fff;
}

/* Hide desktop nav on mobile; show burger */
@media (max-width: 950px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .header-content .cta-button {
    margin-left: 8px;
  }
}
@media (min-width: 951px) {
  .mobile-menu { display: none!important; }
}


/* ===== FOOTER ===== */
footer {
  background: #131922;
  padding: 24px 0 8px 0;
  box-shadow: 0 -2px 8px 0 rgba(20,39,70,0.13);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 0;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #8B98B8;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 1px;
  transition: color .16s;
}
.footer-nav a:hover,
.footer-nav a:focus { color: var(--metal); }
.footer-desc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #B6BCD6;
  font-size: 0.97rem;
  max-width: 420px;
}
.footer-desc img {
  height: 38px;
  width: auto;
  margin-top: 3px;
  margin-right: 4px;
}


/* ===== CARDS SECTION ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #212A3A;
  border: 1.5px solid #36435b;
  border-radius: var(--card-radius);
  padding: 30px 24px 22px 24px;
}


/* ===== CTA, SERVICE LINKS ===== */
.cta {
  background: linear-gradient(95deg,#212A3A 80%, #2d406f 100%) no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-button {
  box-shadow: 0 2px 16px 0 rgba(21,33,54,0.15);
  background: linear-gradient(90deg, var(--primary) 60%, #29396b 100%);
}
.cta .contact-info-preview {
  margin-top: 24px;
}
.service-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.service-links a {
  color: #B4C5E4;
  border-bottom: 1px dotted #39507A;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color .18s,color .17s;
}
.service-links a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}


/* ====== LEGAL, THANK YOU ====== */
.legal {
  background: #181f27;
  color: #CED6DF;
}
.legal h1, .legal h2, .legal h3 {
  color: #F7FAFE;
}

/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
  .footer-content { gap: 14px; flex-wrap: wrap; }
}
@media (max-width: 950px) {
  .header-content { gap: 11px; }
  .footer-content { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
  .hero { min-height: 220px; padding: 30px 0 22px 0; }
  .section, .features, .services, .about, .pricing, .location, .legal, .cta, .contact, .thankyou { padding: 22px 6px; }
  .content-wrapper { gap: 13px; }
  .card-container,
  .card-grid,
  .content-grid { flex-direction: column; gap: 18px; }
  .footer-content { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { max-width: 98vw; }
}
@media (max-width: 520px) {
  .hero { padding: 12px 0 7px 0; }
  .section, .features, .services, .about, .pricing, .location, .legal, .cta, .contact, .thankyou { padding: 10px 3px; }
}

/* ====== INTERACTIVE STATES & FOCUS ====== */
a, button, .cta-button {
  transition: all .17s cubic-bezier(.7,.2,.18,1.03);
  outline: none;
}
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1700;
  background: #252f3b;
  color: #E5EAF2;
  padding: 24px 18px 19px 18px;
  box-shadow: 0 -2px 18px 0 rgba(26,32,45,0.17);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 27px;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.06rem;
  animation: fadeInUp .75s cubic-bezier(.37,1,.49,1.14);
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #F6F9FC;
  font-size: 1rem;
  flex: 1 1 300px;
  margin-bottom:8px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cta-button {
  font-size: 0.96rem;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--primary);
  color: #FFF;
  border: none;
  box-shadow: 0 1px 5px rgba(27,34,43,0.06);
  transition: background .18s;
}
.cookie-banner .cta-button {
  font-weight: 700;
}
.cookie-banner button:hover, .cookie-banner .cta-button:hover {
  background: var(--button-hover);
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #B4C5E4;
  border: 1.5px solid #39507a;
  padding: 9px 18px;
}
.cookie-banner .settings-btn:hover {
  background: #29304b;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1800;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(17,23,38,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .38s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #212A3A;
  color: #F7FAFE;
  padding: 38px 28px 28px 28px;
  border-radius: 16px;
  min-width: 320px;
  box-shadow: 0 6px 50px 0 rgba(30,40,60,0.17);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #DEE5F0;
  font-size: 1.17rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 0;
}
.cookie-modal label {
  color: #B4C5E4;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
}
.cookie-modal .always-on {
  font-size: 0.99rem;
  color: #4BB797;
  margin-left: 8px;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 15px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 14px; top: 14px;
  font-size: 2.1rem;
  color: #7C8592;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover { color: #E5EAF2 }

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 7px 14px 7px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 18px 6px 16px 12px;
  }
}

/* ======= FORMS (for future expansion) ======= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--input-bg);
  color: var(--input-fg);
  border: 1.4px solid #313A44;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 1.06rem;
  margin-bottom: 14px;
  transition: border-color .17s, box-shadow .17s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: 2.5px solid var(--focus);
}
label { margin-bottom: 7px; color: #AAB2C7; font-size: 1rem; display: block; }

/* ======= Z-INDEX RULES ======= */
header { z-index: 100; }
.mobile-menu { z-index: 1201; }
.mobile-menu-close { z-index: 1202; }
.cookie-banner { z-index: 1700; }
.cookie-modal-backdrop { z-index: 1800; }

/* ====== SPECIAL: THANK YOU PAGE ====== */
.thankyou {
  background: #192337;
  text-align: center;
  border-radius: var(--card-radius);
}

/* ======= A11y Color Contrasts & Tinting ======= */
.section, .features, .services, .about, .pricing, .location,
.legal, .cta, .contact, .thankyou {
  color: #E5EAF2;
}

.testimonials {
  background: #111826;
  border-radius: var(--card-radius);
  padding-bottom: 32px;
  color: #111826;
}

.testimonial-card {
  color: #212D3B;
  background: #F7F8FA;
  box-shadow: 0 2px 10px 0 rgba(21,27,39,0.08);
}

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

/* ===== FACILITY: CENTER ALL PAGE IF MINIMAL CONTENT ===== */
body>main {
  min-height: 60vh;
}
