/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #EFF2F7;
  background: #1B213A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  letter-spacing: 0;
  line-height: 1.6;
}
a {
  color: #FAD642;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffbe6;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  transition: background 0.15s, color 0.15s;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #FAD642;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #FAD642;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #EFF2F7;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #EFF2F7;
}

p, li, span, strong, em {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: 700; }
em {font-style: italic;}

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

/* MODERN INDUSTRIAL COLORS & METALLIC TOUCH */
:root {
  --primary: #222B54;
  --secondary: #FAD642;
  --accent: #EFF2F7;
  --background: #1B213A;
  --metal: #8B909B;
  --shadow-dark: 0 4px 22px rgba(20, 20, 30, 0.27);
  --shadow-light: 0 2px 8px rgba(250, 214, 66, 0.06);
}

/* HEADER & NAV */
header {
  background: #222B54;
  box-shadow: 0 2px 8px rgba(20,20,30,0.14);
  position: sticky;
  top: 0;
  z-index: 101;
}
header nav {
  min-height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  position: relative;
}
header nav > a img {
  height: 38px;
  display: block;
  margin-right: 6px;
  filter: brightness(1.3) drop-shadow(0 3px 5px rgba(250,214,66,0.17));
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
header nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 18px;
  color: var(--accent);
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--secondary);
  color: var(--primary);
}
header .cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FAD642 80%, #ffe389 100%);
  color: #222B54;
  font-weight: 800;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 12px 26px;
  border-radius: 32px;
  box-shadow: var(--shadow-light);
  margin-left: 16px;
  letter-spacing: 0.03em;
  transition: background 0.16s, color 0.18s, box-shadow 0.19s;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #222B54;
  color: #FAD642;
  box-shadow: 0 4px 14px 0 #FAD64233;
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FAD642;
  font-size: 2.2rem;
  padding: 12px 14px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.15s, background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fffbe6;
  background: #222b54cc;
  border-radius: 50%;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,20,33,0.98);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FAD642;
  font-size: 2rem;
  padding: 18px;
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 221;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fffbe6;
}
.mobile-nav {
  width: 100%;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 28px;
}
.mobile-nav a {
  color: #FAD642;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 13px 0;
  border-radius: 8px;
  min-width: 220px;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #353f6c;
  color: #fffbe6;
  outline: none;
}

@media (max-width: 1024px) {
  header nav ul { gap: 7px; }
}
@media (max-width: 850px) {
  header nav ul { gap: 0px; }
}
@media (max-width: 768px) {
  header nav ul {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN & SECTION */
main {
  width: 100%;
  min-height: 65vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.text-section {
  margin-bottom: 24px;
}
.text-section ul, .text-section ol {
  margin-top: 12px;
  margin-bottom: 8px;
  padding-left: 18px;
  list-style: disc outside;
}
.text-section li {
  margin-bottom: 6px;
}
.text-section em {
  color: #FAD642;
}

/* FLEXBOX LAYOUTS */
.feature-grid, .benefit-grid, .case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.feature-grid { justify-content: flex-start; }
.benefit-grid { justify-content: flex-start; }
.case-study-grid { justify-content: flex-start; }

.feature, .benefit, .case-study {
  background: #232946;
  border: 1px solid #31374D;
  border-radius: 16px;
  box-shadow: var(--shadow-dark);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature img, .benefit img {
  width: 40px;
  height: 40px;
  filter: brightness(1.23) drop-shadow(0 2px 4px #FAD64233);
  margin-bottom: 7px;
}

/* Cards & Service Boxes */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-box {
  background: #232946;
  border: 1px solid #353f6c;
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: var(--shadow-dark);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-price {
  color: #FAD642;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

.usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.usp-icons img {
  width: 40px; height: 40px;
  background: #28336b;
  border-radius: 50%;
  box-shadow: 0 2px 7px #FAD64233;
  padding: 6px;
}

/* List of Services */
.service-list, .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.service-list li, .benefit-list li {
  background: #232946;
  border-left: 6px solid #FAD642;
  border-radius: 8px;
  padding: 18px 20px 17px 20px;
  color: #EFF2F7;
  font-size: 1.08rem;
  font-weight: 500;
}
.service-list strong {
  color: #FAD642;
  font-size: 1.07rem;
}

/* Testimonials */
.testimonial-slider,.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  margin-bottom: 20px;
  background: #EFF2F7;
  color: #222B54;
  border-radius: 14px;
  box-shadow: 0 4px 18px #1B213A18, 0 1.5px 6px #FAD64218;
  border: 1px solid #dddddf;
  min-width: 240px;
  max-width: 370px;
  font-size: 1.07rem;
  line-height: 1.7;
}
.testimonial-card strong {
  color: #222B54;
}
.star-rating {
  font-size: 1.25rem;
  color: #fad642;
  letter-spacing: .07em;
  user-select: none;
}
.participant-feedback {
  margin-top: 22px;
  background: #232946;
  border-radius: 10px;
  padding: 22px 20px;
}
.participant-feedback h3 { color: #fad642; font-size: 1.1rem; margin-bottom: 14px; font-family: 'Montserrat', sans-serif; }
.participant-feedback ul { margin-left: 18px; }
.participant-feedback li { margin-bottom: 8px; color: #EFF2F7; }


/* Cards container pattern */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232946;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-dark);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.17s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 36px #FAD64233, 0 2px 8px #23294644;
  transform: translateY(-2px) scale(1.02);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Utility Flex Patterns (Required) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Contact, Map, Etc. */
.contact-information, .directions, .map-embed {
  margin-bottom: 16px;
}
.contact-information p, .directions p {
  color: #EFF2F7;
}
.map-embed {
  background: #232946;
  border-radius: 8px;
  padding: 18px;
  color: #8B909B;
  text-align: center;
  font-size: 1.07rem;
}

/* Call to Action Button Base */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FAD642 80%, #ffe389 100%);
  color: #222B54;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  border-radius: 28px;
  padding: 14px 35px;
  box-shadow: 0 2px 6px #FAD64222;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.16s, color 0.18s, box-shadow 0.21s, transform 0.12s;
  text-align: center;
  margin-top: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #222B54;
  color: #FAD642;
  box-shadow: 0 3px 14px #FAD64233, 0 1.5px 4px #222B5422;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* Footer */
footer {
  background: #232946;
  color: #8B909B;
  padding: 44px 0 28px 0;
  width: 100%;
  border-top: 2px solid #353f6c;
  box-shadow: 0 -2px 16px #1B213A16;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
.footer-nav a {
  color: #FAD642;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #222B54;
  color: #EFF2F7;
}
.footer-contact {
  font-size: 1rem;
  color: #8B909B;
  text-align: center;
  margin-top: 8px;
}
.footer-contact strong { color: #fad642; }

/* Cookie Consent Banner (Fixed Bottom) */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #232946eb;
  color: #EFF2F7;
  border-top: 2px solid #FAD64284;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px;
  box-shadow: 0 -4px 24px #222B5433;
  gap: 24px;
  animation: cookiebanner-in 0.5s cubic-bezier(.44,.87,.43,1) forwards;
}
.cookie-consent-banner.fadeout {
  animation: cookiebanner-out 0.5s cubic-bezier(.44,.87,.43,1) forwards;
}
@keyframes cookiebanner-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes cookiebanner-out {
  to { transform: translateY(100%); opacity: 0; }
}
.cookie-banner-message {
  color: #EFF2F7;
  font-size: 1.012rem;
  flex: 1 1 0;
  max-width: 67vw;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 9px 21px;
  margin: 0;
  outline: none;
  box-shadow: 0 1.5px 4px #fad64218;
  border: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#FAD642 85%,#ffe389 100%);
  color: #222B54;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #222B54;
  color: #FAD642;
  box-shadow: 0 4px 16px #fad64233;
}
.cookie-btn.reject {
  background: #232946;
  color: #fad642;
  border: 1.5px solid #fad642;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fad642;
  color: #232946;
}
.cookie-btn.settings {
  background: transparent;
  color: #fad642;
  border: 1.5px solid #fad642;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fad642;
  color: #232946;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,19,35,0.86);
  z-index: 11002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: cookiemodal-fadein 0.33s cubic-bezier(.45,.78,.43,1) forwards;
}
@keyframes cookiemodal-fadein { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal {
  background: #eff2f7;
  border-radius: 18px;
  color: #222B54;
  max-width: 397px;
  width: 93vw;
  box-shadow: 0 8px 48px #1B213A54, 0 2px 8px #222b5433;
  padding: 34px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 1.7rem;
  color: #222B54;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #fad642; }
.cookie-modal h2 {
  color: #222B54;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.cookie-toggle {
  width: 44px; height: 26px;
  border-radius: 14px;
  background: #8B909B33;
  position: relative;
  border: 2px solid #8B909B;
  transition: background 0.17s, border 0.17s;
}
.cookie-toggle[data-checked="true"] {
  background: #fad642cc;
  border-color: #fad642;
}
.cookie-toggle-switch {
  display: block;
  width: 20px; height: 20px;
  background: #232946;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.2s, background 0.16s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-switch {
  left: 20px; background: #fad642;
}
.cookie-category-label {
  color: #222B54;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-modal .cookie-btn {
  font-size: 1.04rem;
  border-radius: 21px;
}


/* Responsive - Mobile First */
@media (max-width: 1100px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .benefit-grid, .service-grid, .case-study-grid { gap: 16px; }
  .service-box, .feature, .benefit, .case-study { padding: 21px 13px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section {
    padding: 28px 6px;
    margin-bottom: 40px;
  }
  .container { padding: 0 4px; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .benefit-grid, .service-grid, .case-study-grid, .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature, .benefit, .case-study, .service-box, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .footer-nav { gap: 8px; flex-direction: column; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .cookie-banner-message {
    max-width: 100vw;
    font-size: .96rem;
  }
  .cookie-modal { padding: 22px 9px 15px 9px; }
}


/* MICRO-INTERACTIONS */
.cta-btn, .cookie-btn, .feature, .service-box, .testimonial-card {
  will-change: transform, box-shadow;
}
.cta-btn:active, .feature:active, .service-box:active {
  transform: scale(0.98);
  box-shadow: 0 1px 2px #fad64218;
}

/* HIGHLIGHTED TEXT/SELECTION */
::selection {
  background: #FAD642;
  color: #232946;
}

/* Scrollbar styling (dark, metal touch) */
body::-webkit-scrollbar { width: 10px; background: #232946; }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5a5e66 70%, #fad64299 100%);
  border-radius: 8px;
}

/* Accessibility: Visually Hidden class */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Industrial Font feature for headings */
h1, h2, h3, .cta-btn {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Extra: for input fields in modals/forms, should they appear */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: #232946;
  color: #FAD642;
  border: 1.5px solid #FAD642CC;
  border-radius: 7px;
  padding: 10px;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #fad642;
  background: #222B54;
  color: #fad642;
}

/* END INDUSTRIAL MODERN CSS */
