/* ==========================================================================
   Reset & Normalize
   ========================================================================== */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1B263B;
  color: #f2f6fa;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}

ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ==========================================================================
   Brand Typography (Industrial Modern)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #1B263B;
  color: #F2F6FA;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #FFD60A;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 6px rgba(20,26,40,0.35);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  color: #F2F6FA;
  font-weight: 600;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #F2F6FA;
  font-weight: 500;
}
p, li {
  font-size: 1rem;
  color: #E0E4EA;
  margin-bottom: 8px;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #232b3e;
  background: #F2F6FA;
  border-left: 5px solid #FFD60A;
  padding: 12px 20px;
  border-radius: 7px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(27,38,59,0.04);
}

.visual-tagline, .mission-statement {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #FFD60A;
  margin-top: 12px;
}

/* ==========================================================================
   Layout Containers & Sections (Flex, Responsive, Spacing)
   ========================================================================== */

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

main > section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232B3E;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(15,22,21,0.11);
  position: relative;
}

section.hero,
section.thank-you {
  background: #1B263B;
  box-shadow: 0 2px 12px rgba(20,26,40,0.09);
  border-radius: 0 0 18px 18px;
  padding-bottom: 56px;
  padding-top: 52px;
}

.features, .feature-grid, .feature-list {
  margin-bottom: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: #232B3E;
  border: 1.5px solid #363D4D;
  border-radius: 9px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 1px 6px 0 rgba(27,38,59,0.12);
  margin-bottom: 20px;
  transition: box-shadow .2s, border-color .2s;
}
.feature-grid > div:hover,
.feature-grid > div:focus {
  box-shadow: 0 4px 14px 0 rgba(255, 214, 10, 0.12);
  border-color: #FFD60A;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  filter: brightness(0.85) contrast(1.5) drop-shadow(1px 2px 1px #1B263B);
}

.feature-list, .services ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}

ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 22px;
  color: #FFD60A;
  list-style: decimal;
}
ol li {
  color: #E0E4EA;
  padding-left: 6px;
}

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

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232B3E;
  border: 1.5px solid #363D4D;
  border-radius: 11px;
  margin-bottom: 20px;
  padding: 28px 18px 22px 18px;
  box-shadow: 0 3px 9px rgba(25, 30, 37, 0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 20px 0 rgba(33,37,53,0.16);
  border-color: #FFD60A;
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

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

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F6FA;
  color: #232B3E;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(27,38,59,0.09);
  min-width: 240px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD60A;
  position: relative;
  transition: box-shadow .2s;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-size: 1.05rem;
  color: #232B3E;
  font-style: italic;
  margin-bottom: 0;
  padding: 0;
}
.testimonial-card p,
.testimonial-card strong {
  color: #232B3E;
  font-family: 'Montserrat', Arial, sans-serif;
}

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

.section:not(:last-child) {
  margin-bottom: 60px !important;
}
section:not(:last-child) {
  margin-bottom: 60px !important;
}

.card:not(:last-child),
.testimonial-card:not(:last-child),
.feature-grid > div:not(:last-child),
.card-container > .card:not(:last-child) {
  margin-right: 24px;
}

/* FAQ Styling */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-list > div {
  flex: 1 1 320px;
  min-width: 240px;
  background: #232B3E;
  border: 1.5px solid #363D4D;
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(27,38,59,0.07);
  transition: box-shadow .2s, border-color .2s;
}
.faq-list > div h3 {
  color: #FFD60A;
  margin-bottom: 8px;
}

.quick-links {
  margin-top: 32px;
  background: #232B3E;
  border-radius: 7px;
  padding: 16px 22px 18px 22px;
}
.quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick-links a {
  color: #FFD60A;
  text-decoration: underline;
  font-weight: 600;
  transition: color .2s;
}
.quick-links a:hover { color: #415A77; }

/* ==========================================================================
   Navigation: Desktop, Mobile Burger Menu, Footer
   ========================================================================== */
header {
  background: #1B263B;
  box-shadow: 0 2px 8px rgba(20,26,40,0.09);
  padding: 0;
  z-index: 21;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
header a img {
  display: block;
  height: 46px;
  width: auto;
  margin-right: 18px;
  filter: brightness(1.1) drop-shadow(2px 3px 3px #232B3E55);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #F2F6FA;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 8px 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 4px;
  transition: background .15s, color .15s;
  font-size: 1rem;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #415A77;
  color: #FFD60A;
}
.main-nav .cta-primary {
  background: #FFD60A;
  color: #232B3E;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 11px 24px;
  margin-left: 14px;
  border-radius: 7px;
  box-shadow: 0 2px 8px 0 #232B3E22;
  transition: background .15s, color .15s, box-shadow .22s;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #FFEA77;
  color: #1B263B;
  box-shadow: 0 5px 18px 0 #FFD60A33;
}

.mobile-menu-toggle {
  display: none;
  background: #232B3E;
  color: #FFD60A;
  font-size: 2rem;
  border-radius: 5px;
  padding: 5px 13px;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: 1px solid #FFD60A11;
  outline: none;
  margin-left: 22px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus { background: #FFD60A; color: #232B3E; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1B263BDD;
  z-index: 9999;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(0.42,0,0.58,1);
  /* Open state set via .open class in JS */
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-top: 18px;
  margin-bottom: 18px;
  margin-right: 25px;
  background: none;
  font-size: 2.2rem;
  color: #FFD60A;
  cursor: pointer;
  border: none;
  transition: color .16s;
  z-index: 10000;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #FFEA77; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding-left: 32px;
  gap: 18px;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 1.22rem;
  color: #FFD60A;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid #415A77;
  transition: color .17s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFEA77;
}

/* Footer */
footer {
  background: #232B3E;
  padding: 48px 0 18px 0;
  margin-top: 48px;
  font-size: 0.97rem;
  border-top: 4px solid #FFD60A00;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #FFD60A;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: .07em;
  transition: color .15s;
  padding: 2px 0;
}
.footer-menu a:hover,
.footer-menu a:focus { color: #415A77; }

.footer-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #E0E4EA;
  font-size: 0.97rem;
  align-items: center;
  margin-bottom: 18px;
}
.footer-contact-info img {
  width: 16px;
  height: 16px;
  vertical-align: sub;
  margin-right: 6px;
  filter: brightness(0.9);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  opacity: .84;
  filter: grayscale(65%) brightness(1.18);
  transition: opacity .19s;
}
.social-links a:hover img,
.social-links a:focus img {
  opacity: 1;
  filter: drop-shadow(0 0 2px #FFD60A88) brightness(1.2);
}

.footer-credit {
  font-size: 0.96rem;
  color: #7C889B;
  margin-top: 12px;
  letter-spacing: .06em;
}

/* ==========================================================================
   Buttons, CTAs, Links & Micro-Interactions
   ========================================================================== */
.cta-primary, .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 32px;
  border-radius: 8px;
  background: #FFD60A;
  color: #232B3E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s;
  box-shadow: 0 3px 11px 0 #FFD60A33;
  outline: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  text-shadow: none;
  letter-spacing: 0.08em;
  border-bottom: 3px solid #E5BF06;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFEA77;
  color: #1B263B;
  box-shadow: 0 9px 24px 0 #FFD60A22;
}

a, a:visited, a:active {
  color: #FFD60A;
  transition: color .17s;
}
a:hover, a:focus {
  color: #FFEA77;
}

/* ==========================================================================
   Contact Details Styling
   ========================================================================== */
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #FFD60A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.contact-details li img {
  width: 20px;
  height: 20px;
  filter: brightness(1.13) drop-shadow(1px 2px 1px #232B3E11);
}
.contact-details a {
  color: #FFD60A;
  word-break: break-all;
}
.contact-details a:hover { color: #415A77; }

/* ==========================================================================
   Cookie Consent Banner & Modal
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232B3E;
  color: #FFD60A;
  border-top: 4px solid #FFD60A;
  box-shadow: 0 -2px 12px rgba(20,26,40,0.12);
  padding: 22px 16px 22px 22px;
  z-index: 10001;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: fadeInUp .7s cubic-bezier(0.42,0,0.58,1) both;
}
.cookie-banner p {
  color: #FFD60A;
  font-weight: 500;
  flex: 1;
  margin-right: 18px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 11px 23px;
  margin: 0;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #FFD60A;
  color: #1B263B;
  transition: background .11s, color .11s;
  box-shadow: 0 2px 8px 0 #FFD60A22;
  cursor: pointer;
  font-size: 0.98rem;
  border-bottom: 3px solid #E5BF06;
}
.cookie-btn.settings {
  background: #415A77;
  color: #FFD60A;
  border-bottom: 3px solid #24314B;
}
.cookie-btn.settings:hover { background: #FFD60A; color: #1B263B; }
.cookie-btn.reject {
  background: #232B3E;
  color: #FFD60A;
  border: 1.5px solid #FFD60A;
  border-bottom: 3px solid #FFD60A;
}
.cookie-btn.reject:hover { background: #FFD60A; color: #232B3E; }

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(48px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1B263BCC;
  z-index: 10002;
  animation: fadeIn .3s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #232B3E;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 12px;
  box-shadow: 0 8px 32px #1B263B77;
  padding: 30px 30px 22px 30px;
  color: #FFD60A;
  border: 2.5px solid #FFD60A;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #FFD60A;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #FFD60A;
  width: 19px; height: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.5rem;
  color: #FFD60A;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #FFEA77; }

/* ==========================================================================
   Responsive Breakpoints (Flex layouts only, mobile-first)
   ========================================================================== */
@media (max-width: 1020px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .feature-grid > div, .card, .faq-list > div {
    min-width: 180px !important;
    flex: 1 1 180px;
  }
}
@media (max-width: 820px) {
  header .container { flex-direction: row; }
  .feature-grid, .testimonial-list, .card-container, .faq-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .card, .testimonial-card, .faq-list > div {
    min-width: 0 !important;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: inline-block; }

  .feature-grid, .testimonial-list, .content-grid, .card-container, .faq-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div, .card, .testimonial-card, .faq-list > div {
    width: 100%;
    min-width: 0 !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 20px;
  }
  main > section, .section {
    padding: 24px 7px;
    margin-bottom: 38px;
    border-radius: 8px;
  }
  section.hero { padding-bottom: 30px; padding-top: 26px; border-radius: 0 0 12px 12px; }
  footer { padding: 32px 0 12px 0; }
}

@media (max-width: 630px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  .feature-grid > div, .card, .testimonial-card {
    padding: 13px 8px;
  }
  .quick-links {
    padding: 11px 7px;
  }
  .footer-menu,
  .footer-contact-info {
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 450px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 9px; padding: 14px 7px; }
  .cookie-banner p { margin-right: 0; font-size: 0.92rem; }
  .cookie-modal-content { padding: 18px 7px 13px 7px; min-width: 0; }
  .footer-contact-info, .social-links { gap: 7px; }
}

/* ==========================================================================
   Miscellaneous & Utility
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
  background: #232B3E;
}
::-webkit-scrollbar-thumb {
  background: #415A77;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD60A;
}

strong {
  font-weight: 700;
  color: #FFD60A;
}

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

/****** End of CSS ******/
