/* RESET & BASE STYLES */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Nunito', Arial, sans-serif;
  background: #191B1D;
  color: #F6F7F9;
  min-height: 100vh;
  letter-spacing: 0.01em;
  line-height: 1.5;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FFD022;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #40B695;
}
ul, ol {
  list-style: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Nunito:wght@400;700&display=swap');

/* VISUAL DESIGN TOKENS */
:root {
  --primary: #1D5890;
  --secondary: #FFFFFF;
  --accent: #FFD022;
  --dark-bg: #181A1D;
  --card-bg: #23262A;
  --footer-bg: #131415;
  --metal: #A7A9AC;
  --metal-dark: #616368;
  --text: #F6F7F9;
  --text-dark: #191B1D;
  --shadow: 0 2px 12px 0 rgba(13,18,22,0.15);
  --radius: 16px;
  --border-metal: 1.5px solid #383A3E;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* TYPOGRAPHY */
h1, .hero h1 {
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.012em;
  text-shadow: 0 2px var(--metal-dark);
}
h2 {
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px var(--metal-dark);
}
h3 {
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
p, li, span {
  font-size: 1rem;
  color: var(--text);
  font-family: 'Nunito', Arial, sans-serif;
}
strong {
  color: var(--accent);
  font-weight: 700;
}

/* HEADER/NAVIGATION */
header {
  background: #17191C;
  border-bottom: 2px solid #23262A;
  box-shadow: 0 2px 8px rgba(13,18,22,0.10);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--secondary);
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
}
.btn-primary {
  background: linear-gradient(90deg,#FFD022 60%, #FFD34E 100%);
  color: #181A1D;
  font-family: 'Baloo 2', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06rem;
  padding: 12px 32px;
  margin-left: 24px;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px 0 rgba(255,211,34,0.12);
  border: none;
  outline: none;
  display: inline-block;
  transition: box-shadow 0.2s, background 0.2s, transform 0.18s;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #FFD34E 40%, #FFC100 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 24px 0 rgba(255,211,34,0.22);
  color: #191B1D;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--accent);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #23262A;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 100vw;
  background: #181A1D;
  box-shadow: -2px 0 16px 0 rgba(0,0,0,0.20);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.53,.12,.21,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 28px 16px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 1.9rem;
  cursor: pointer;
  margin-bottom: 14px;
  transition: color 0.18s;
  z-index: 102;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: none;
  padding: 12px 0 12px 6px;
  border-radius: 6px;
  transition: background 0.14s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #23262A;
  color: var(--accent);
  outline: none;
}

@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .main-nav {
    gap: 12px;
  }
  .btn-primary {
    margin-left: 12px;
    padding: 12px 20px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    height: 64px;
  }
  .main-nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 38px;
  }
}

/* HERO */
.hero {
  background: #212326 url('../assets/hero-texture.png') repeat;
  border-bottom: var(--border-metal);
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 42px 0;
}
.hero p {
  color: #B3B7BC;
  font-size: 1.11rem;
}

/* CARD &#x26; FLEX PATTERNS */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px !important;
}
.card {
  background: var(--card-bg);
  border: var(--border-metal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px;
  margin-bottom: 20px !important;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 20px 0 rgba(64,182,149,0.14);
  transform: translateY(-3px) scale(1.018);
}
.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;
  border-radius: var(--radius);
  background: #F7F7FA;
  color: #191B1D;
  box-shadow: 0 2px 12px 0 rgba(64,182,149,0.11);
  margin-bottom: 20px;
  min-width: 260px;
  min-height: 80px;
  border-left: 6px solid var(--accent);
}
.testimonial-card p {
  color: #191B1D;
  font-size: 1.08rem;
}
.testimonial-card span strong {
  color: #2166A6;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CUSTOM SECTION TWEAKS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}
.feature-grid li {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border-metal);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 280px;
  padding: 28px 18px 22px 18px;
  transition: box-shadow 0.17s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.feature-grid li img {
  height: 38px;
  margin-bottom: 12px;
  filter: grayscale(25%) contrast(1.05) brightness(0.98);
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 6px 24px 0 rgba(33,102,166,0.13);
  transform: translateY(-3px) scale(1.012);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 8px 0;
  justify-content: flex-start;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border-metal);
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  padding: 26px 20px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 8px;
}
.service-card .service-price {
  font-size: 1.04rem;
  color: var(--accent);
  font-weight: bold;
  margin-top: auto;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 26px 0 rgba(255,211,34,0.14);
  transform: scale(1.014);
}

/* CTA Section */
.cta {
  margin-bottom: 64px !important;
  background: #242639;
  box-shadow: 0 2px 24px 0 rgba(33,102,166,0.06);
  border-radius: var(--radius);
}
.cta .container {
  justify-content: center;
  align-items: center;
  padding: 42px 0;
}
.cta h2,
.cta p {
  text-align: center;
  width: 100%;
}

/* Confirmation Page */
.confirmation {
  margin-top: 70px;
  margin-bottom: 40px;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 36px;
  margin: 0 auto;
}
.confirmation .btn-primary {
  margin-top: 24px;
}

/* Footer */
footer {
  width: 100%;
  background: var(--footer-bg);
  border-top: 2px solid #222;
  box-shadow: 0 -2px 10px 0 #16181B;
  padding-top: 36px;
  padding-bottom: 16px;
  margin-top: 60px;
  color: var(--text);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 22px;
  align-items: flex-start;
}
.footer-logo {
  flex: 0 0 90px;
  margin-bottom: 20px;
}
.footer-logo img { height: 56px; display: block; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #B3B7BC;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #B3B7BC;
  font-size: 0.98rem;
}
.copyright {
  flex-basis: 100%;
  text-align: center;
  color: #616368;
  margin-top: 19px;
  font-size: 0.92rem;
}

/* Text-Only Blocks (legal/info) */
.text-section {
  background: rgba(35,38,42,0.90);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(33,102,166,0.045);
  padding: 28px 20px;
  margin: 24px 0 24px 0;
  color: #ededed;
}
.text-section h2 { color: var(--accent); margin-bottom: 10px; }
.text-section ul li {
  margin-bottom: 8px;
  color: #BCD1E9;
  font-size: 1.055rem;
}

/* Modal/Overlay Styles (Cookie Modal) */
#cookie-consent-banner,
.cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #211F22;
  color: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(33,102,166,0.14);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 30px 20px 27px;
  font-size: 1.02rem;
  flex-wrap: wrap;
  transition: opacity 0.25s, transform 0.25s;
}
#cookie-consent-banner.hide,
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--metal-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 19px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(65,182,149,.13);
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #4B5157;
  color: #fff;
}
.cookie-btn.settings {
  background: #242639;
  color: #FFD022;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #181A1D;
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(33,102,166,0.15);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,24,27,0.7);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.22s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #23262A;
  color: #fff;
  width: 96vw;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: 0 6px 32px 0 rgba(33,102,166,0.17);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1110;
  animation: cookiePop 0.33s cubic-bezier(.53,.1,.44,1.07);
}
@keyframes cookiePop {
  from { transform: scale(0.93) translateY(36px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.38rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.08rem;
  color: var(--secondary);
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #292B33;
  border-radius: 10px;
  position: relative;
  font: inherit;
  outline: none;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--accent);
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.13);
  transition: left 0.18s;
}
.cookie-toggle:checked:after {
  left: 17px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 48px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: var(--primary);
}

/* MICROINTERACTIONS &#x26; BUTTONS */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Baloo 2', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, box-shadow 0.13s, transform 0.13s;
}
button:focus, .btn-primary:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1080px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid li,
  .service-card {
    max-width: 100%;
    min-width: unset;
  }
  footer .container { flex-direction: column; gap: 24px; }
}
@media (max-width: 900px) {
  .hero .content-wrapper,
  .cta .container,
  .confirmation .content-wrapper {
    padding: 30px 0;
  }
  .feature-grid li,
  .service-card {
    padding: 20px 12px 18px 14px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15.5px; }
  .hero .container,
  .cta .container {
    padding: 0 7px;
  }
  .container {
    padding: 0 7px;
  }
  .section,
  .cta, .hero {
    padding: 24px 5px !important;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-card {
    max-width: 100%;
    min-width: unset;
    padding: 16px 7px 11px 9px;
  }
  .testimonial-card {
    padding: 18px 9px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1, .hero h1 { font-size: 1.50rem; }
  h2      { font-size: 1.15rem; }
  h3      { font-size: 1.08rem; }
  .btn-primary { padding: 11px 14px; font-size: 0.95rem; }
}
/* Prevent content overlapping and ensure proper spacing */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
/* Utility classes */
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.gap-2 { gap: 16px !important; }

/* Scrollbar and selection styling for modern/industrial feel */
::-webkit-scrollbar {
  width: 10px;
  background: #26282B;
}
::-webkit-scrollbar-thumb {
  background: #373A40;
  border-radius: 6px;
}
::selection {
  background: var(--accent);
  color: #181A1D;
}

/* Miscellaneous: Metallic lines/accent bar */
hr {
  border: none;
  border-top: 2px solid #383A3E;
  margin: 38px 0;
}

/* SHADOWS &#x26; METALLIC EFFECTS */
.card, .feature-grid li, .service-card, .testimonial-card {
  box-shadow: var(--shadow);
  border-left: 3px solid var(--metal-dark);
  border-bottom: 1.5px solid var(--metal-dark);
}

/* --- END OF CSS --- */
