/* ==== CSS RESET & BASE ==== */
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;
  min-height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #151c28;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #FFAC3A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #f2f2f2;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, .btn {
  font-family: inherit;
}

/* === BRAND FONT FACE LOADING === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Open+Sans:400,600,700&display=swap');

/* ==== CONTAINERS ==== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFAC3A;
}
h3 {
  font-size: 1.30rem;
  margin-bottom: 12px;
  color: #53aaff;
}
h4, h5 {
  font-size: 1.10rem;
  margin-bottom: 8px;
  color: #f2f2f2;
}
p, li, address {
  color: #e3e9fa;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}
strong {
  color: #ffffff;
  font-weight: 700;
}
address {
  font-style: normal;
  color: #aacaf0;
  font-size: 15px;
  margin-bottom: 10px;
}

/* TYPOGRAPHY SCALE */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.5rem; }
  p, li, address { font-size: 17.5px; }
}

/* ==== FLEXBOX LAYOUTS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222f47;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(19,40,80,0.14);
  overflow: hidden;
  transition: background .25s, box-shadow .25s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #f2f2f23b;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(23,76,127,0.11);
  color: #151c28;
  max-width: 600px;
  border-left: 4px solid #FFAC3A;
  font-size: 17px;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 #a6d6fd44;
  border-left: 4px solid #53aaff;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== BUTTONS ==== */
.btn {
  border: none;
  outline: none;
  padding: 14px 32px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #15406a;
  color: #FFAC3A;
  text-shadow: 0 2px 16px #1730477e;
  box-shadow: 0 4px 16px 0 #17304736;
  cursor: pointer;
  margin-right: 18px;
  transition: background .19s, color .19s, box-shadow .19s, border .19s;
  position: relative;
  letter-spacing: .05em;
  z-index: 2;
}
.btn:last-child { margin-right: 0; }
.btn-primary {
  background: #FFAC3A;
  color: #10213e;
  box-shadow: 0 2px 20px 0 #ffac3a60;
  border: 2px solid #174C7F;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD598;
  color: #174C7F;
  box-shadow: 0 4px 24px 0 #174C7Faa;
}

.btn-accent {
  background: #174C7F;
  color: #fff;
  border: 2px solid #FFAC3A;
}
.btn-accent:hover, .btn-accent:focus {
  background: #122d4a;
  color: #FFAC3A;
  border-color: #f2f2f2;
}

/* Micro-glow effect for tech style */
.btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 6px; right: 6px; top: 6px; bottom: 6px;
  border-radius: 20px;
  z-index: -1;
  box-shadow: 0 0 16px 6px #53aaff10, 0 0 1px 1px #174C7F10;
  opacity: 0.45;
  pointer-events: none;
}
.btn:active {
  transform: scale(.96);
}

/* ==== NAVIGATION ==== */
header {
  background: #182844;
  box-shadow: 0 2px 10px 0 rgba(23,76,127, 0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  width: 100%;
}
.main-nav > a img {
  max-height: 46px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-left: 16px;
}
.main-nav ul li {
  display: flex;
  align-items: center;
}
.main-nav ul li a {
  color: #e3e9fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #233262;
  color: #FFAC3A;
}
.main-nav ul li .btn {
  margin-left: 12px;
  margin-right: 0;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #182844;
  color: #FFAC3A;
  border: none;
  font-size: 2rem;
  border-radius: 9px;
  padding: 6px 16px;
  margin-left: auto;
  cursor: pointer;
  line-height: 1;
  transition: background .16s, color .16s;
  z-index: 103;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #233262;
  color: #FFD598;
  outline: none;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #101a2fef;
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.76,.17,.41,.98);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFAC3A;
  font-size: 2.1rem;
  margin: 24px 22px 14px 0;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD598;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 32px;
  gap: 8px;
}
.mobile-nav a {
  color: #e3e9fa;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 21px;
  padding: 15px 10px;
  border-radius: 8px;
  transition: background .23s, color .21s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #174C7F;
  color: #FFAC3A;
}

/* Hamburger shown only on mobile */
@media (max-width: 1024px) {
  .main-nav ul { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}


/* ==== HERO SECTION ==== */
.hero-section {
  width: 100%;
  min-height: 340px;
  background: linear-gradient(99deg, #174C7F 40%, #131828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #233262;
  box-shadow: 0 15px 64px 0 #10213e18;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  padding: 30px 0;
  max-width: 720px;
}
.hero-section h1 {
  color: #FFAC3A;
  text-shadow: 0 2px 32px #FFAC3A1c;
}
.hero-section p {
  color: #e3e9fa;
  margin-bottom: 22px;
  margin-top: 4px;
}

/* ==== SECTIONS LAYOUT ==== */
.features-section, .howitworks-section, .services-section, .faq-section, .about-section, .legal-section, .hours-section, .contact-section, .confirmation-section, .job-listings-section, .testimonials-section, .cta-section, .form-section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #181f2e;
  border-radius: 20px;
  box-shadow: 0 5px 40px 0 #1a275585;
}
.cta-section {
  background: linear-gradient(92deg, #FFAC3A 15%, #174C7F 95%);
  color: #173047;
  border-radius: 20px;
  box-shadow: 0 5px 20px 0 #FFAC3A33;
  text-align: left;
}
.cta-section h2 { color: #173047; }

@media (max-width: 768px){
  .features-section, .howitworks-section, .services-section, .faq-section, .about-section, .legal-section, .hours-section, .contact-section, .confirmation-section, .job-listings-section, .testimonials-section, .cta-section, .form-section {
    padding: 24px 7px;
    margin-bottom: 44px;
    border-radius: 12px;
  }
}

/* ==== FEATURES LIST ==== */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.features-list li {
  background: #182844;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 14px 0 #174C7F17;
  min-width: 260px;
  flex: 1 0 260px;
  transition: transform .18s, box-shadow .17s;
  margin-bottom: 10px;
}
.features-list li:hover, .features-list li:focus-within {
  box-shadow: 0 3px 20px 0 #53aaff2a;
  transform: translateY(-4px) scale(1.03);
}
.features-list img {
  width: 44px; min-width: 44px; max-width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 7px #53aaff66);
}
.features-list h3 {
  color: #FFAC3A;
  letter-spacing: .002em;
  margin-bottom: 8px;
  font-size: 1.13rem;
}
.features-list p {
  margin-bottom: 0;
  color: #c2d2f7;
  font-size: 15.5px;
}

/* ==== SERVICE CARDS ==== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 20px 0;
}
.service-card {
  background: #222f47;
  border-radius: 17px;
  min-width: 220px;
  max-width: 300px;
  flex: 1 0 245px;
  box-shadow: 0 2px 20px 0 #17304733;
  padding: 28px 22px 20px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s, background .16s, transform .12s;
  border-left: 4px solid #53aaff;
}
.service-card:hover {
  background: #263352;
  box-shadow: 0 6px 29px 0 #174C7F44;
  border-left: 4px solid #FFAC3A;
  transform: translateY(-5px) scale(1.022);
}
.service-card h3 {
  margin-bottom: 10px;
  color: #FFAC3A;
  font-size: 1.18rem;
}
.service-card p {
  color: #aacaf0;
  font-size: 15.5px;
  margin-bottom: 13px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #53aaff;
  background: #151c28;
  padding: 6px 13px;
  border-radius: 10px;
  margin-top: auto;
  font-size: 1.12rem;
}

/* ==== JOB LISTINGS ==== */
.job-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 27px 0 22px 0;
  width: 100%;
}
.job-card {
  background: #1d273d;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #174C7F15;
  padding: 22px 18px 20px 22px;
  margin-bottom: 22px;
  flex: 1 0 250px;
  transition: box-shadow .15s, background .13s;
  border-left: 4px solid #53aaff;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.job-card h3 {
  color: #FFAC3A;
  font-size: 1rem;
  margin-bottom: 4px;
}
.job-card p {
  color: #aacaf0;
  font-size: 15px;
  margin-bottom: 3px;
}
.job-card .job-type {
  background: #FFAC3A;
  color: #222f47;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 9px;
  align-self: flex-end;
  margin-top: 8px;
}
.job-card:hover {
  background: #182844;
  box-shadow: 0 4px 19px #53aaff33;
  border-left: 4px solid #FFD598;
}

.pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.pagination span, .pagination a {
  background: #22335a;
  color: #FFAC3A;
  padding: 4px 11px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 4px;
  transition: background .17s, color .17s;
}
.pagination span {
  background: #FFAC3A;
  color: #173047;
  font-weight: 700;
}
.pagination a:hover, .pagination a:focus {
  background: #FFAC3A;
  color: #174C7F;
}

/* ==== HOW IT WORKS / STEPPER ==== */
.stepper {
  margin-top: 13px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 6px;
}
.stepper li {
  color: #FFAC3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16.7px;
  background: #222f47;
  border-radius: 9px;
  padding: 13px 13px 11px 15px;
  box-shadow: 0 1px 8px 0 #174C7F10;
}
.stepper li strong {
  color: #53aaff;
  font-weight: 700;
}

/* ==== FAQ ==== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #222f47;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 0;
  box-shadow: 0 1px 10px 0 #174C7F12;
}
.faq-item h3 {
  font-size: 1.04rem;
  color: #FFAC3A;
}
.faq-item p {
  color: #aacaf0;
  margin-bottom: 0;
}

/* ==== ALERT / INFO BAR ==== */
.alert {
  background: #ffd598;
  color: #173047;
  border-radius: 7px;
  padding: 12px 19px;
  margin: 18px 0 10px 0;
  font-size: 16px;
  box-shadow: 0 2px 12px #FFAC3A33;
  border-left: 5px solid #FFAC3A;
}

/* ==== LEGAL SECTIONS ==== */
.legal-section ul {
  margin-bottom: 12px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: disc inside;
}
.legal-section li {
  color: #e3e9fa;
  font-size: 16px;
}

/* ==== OPENING HOURS ==== */
.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  color: #FFAC3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* ==== FOOTER ==== */
footer {
  background: #182844;
  border-top: 2px solid #233262;
  padding: 34px 0 22px 0;
  color: #aacaf0;
  width: 100%;
}
footer .container {
  flex-direction: column;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #aacaf0;
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background .17s, color .17s;
  background: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFAC3A;
  color: #173047;
}
footer address {
  color: #aacaf0;
  font-size: 15px;
  margin-bottom: 8px;
}
footer div {
  color: #e3e9fa;
  font-size: 14px;
  margin-top: 8px;
}


/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
  .service-cards, .features-list, .job-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.11rem; }
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .section {
    padding: 28px 6px;
  }
  .features-list li, .service-card, .job-card {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    padding: 17px 11px;
  }
  .cta-section {
    padding: 24px 6px;
    border-radius: 10px;
  }
  .testimonial-card {
    max-width: 99%;
    padding: 14px 7px;
  }
  .mobile-nav a { font-size: 20px; padding: 13px 8px; }
  .main-nav > a img {
    max-height: 36px;
  }
}

@media (max-width: 500px) {
  .hero-section .content-wrapper {
    padding: 12px 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .testimonial-card, .service-card, .job-card {
    font-size: 15px;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #182844;
  color: #FFAC3A;
  padding: 19px 8px 19px 10px;
  box-shadow: 0 -3px 24px 0 #174C7F33;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
  gap: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  border-top: 4px solid #FFAC3A;
  opacity: 1;
  transition: opacity .2s cubic-bezier(.62,.18,.42,1.03);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .btn {
  margin-right: 9px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 15px;
}
.cookie-banner .btn:last-child { margin-right: 0; }
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    padding: 15px 8px 15px 8px;
    gap: 10px;
  }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #151c288c;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
}
.cookie-modal-backdrop.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #F2F2F2;
  color: #173047;
  border-radius: 18px;
  padding: 34px 30px 24px 30px;
  box-shadow: 0 6px 40px 0 #05376160;
  max-width: 400px;
  width: 96vw;
  z-index: 1110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookie-bounce-in .33s cubic-bezier(.72,-0.14,.28,1.14) both;
}
@keyframes cookie-bounce-in {
  0% { transform: scale(0.8) translateY(60px); opacity: 0; }
  85% { transform: scale(1.04) translateY(-12px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.cookie-modal h3 {
  color: #174C7F;
  margin-bottom: 11px;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
.cookie-modal button.close-modal {
  position: absolute;
  right: 26px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #FFAC3A;
  cursor: pointer;
  border-radius: 7px;
  transition: background .15s, color .13s;
}
.cookie-modal button.close-modal:hover, .cookie-modal button.close-modal:focus {
  background: #FFE5B1;
  color: #174C7F;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.cookie-category label {
  font-weight: 600;
  color: #174C7F;
  margin-right: 14px;
  font-size: 1.02em;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFAC3A;
  margin-right: 9px;
}
.cookie-category input[disabled] {
  opacity: 0.55;
}
.cookie-modal .btn {
  margin-top: 25px;
  margin-right: 15px;
  font-size: 1rem;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 14px 6px 14px 7px;
    max-width: 99vw;
    font-size: 15px;
  }
  .cookie-modal h3 { font-size: 1.04rem; }
}

/* ==== MICRO EFFECTS ==== */
btn, .btn, .card, .service-card, .job-card, .features-list li {
  will-change: box-shadow, transform;
}

/* ==== CUSTOM NEON/TECH EFFECTS ==== */
.btn-primary, .service-card, .features-list li, .job-card {
  box-shadow: 0 0 12px 2px #53aaff10, 0 4px 20px 0 #174C7F22;
}
h2, .hero-section h1, .btn {
  text-shadow: 0 0 7px #53aaff44, 0 0 4px #53aaff33;
}

/* ==== FOCUS STATES ==== */
.btn:focus, .btn:focus-visible, a:focus {
  outline: 2px solid #FFAC3A;
  outline-offset: 2px;
}

/* ==== UTILITY ==== */
.d-none { display: none !important; }
.d-block { display: block !important; }

/* ==== END CSS ==== */
