/* CSS Reset and 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;
}

html {
  scroll-behavior: smooth;
  background: #11182a;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #f4f4f8;
  background: linear-gradient(120deg, #131C36 0%, #232B4A 100%);
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* ----- Brand Typograpy ----- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f4f4f8;
  font-weight: 800;
  line-height: 1.1;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }

p, li, span, a, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #e6e9f0;
}

strong, b { color: #ec9a29; font-weight: 700; }


/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3, h4, h5, h6 { font-size: 1.05rem; }
  p, li, span, a { font-size: 0.96rem; }
}


/* ----- Container Utilities ----- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ----- Section & Spacing Patterns ----- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 34px;
    padding: 25px 0 25px 0;
  }
}

.card-container, .feature-grid, .blog-post-teasers, .review-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.card, .testimonial-card, .blog-post-teasers article, .review-cards-grid div {
  margin-bottom: 20px;
}

.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;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #f4f4f8;
  color: #171d2c;
  box-shadow: 0 2px 10px rgba(24,49,90,0.13);
  transition: box-shadow 0.3s;
}
.testimonial-card p {
  color: #1b2235;
}
.testimonial-card strong {
  color: #18315A;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0px #18264c44;
}
.testimonial-card span {
  font-size: 1.2em; color: #ec9a29;
  margin-left: 10px;
}

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

ul, ol {
  padding-left: 26px; margin: 13px 0 13px 0;
}

li { margin-bottom: 6px; }


/* ----- Neon Accents, Shadow & Card Effects ----- */
.card, .review-cards-grid div, .feature-grid > div, .faq-accordion > div, .blog-post-teasers article {
  background: #222a43;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0px rgba(28, 77, 163, 0.10);
  border: 1.5px solid #23386a;
  transition: box-shadow 0.34s, transform 0.25s;
  position: relative;
  padding: 26px 22px;
}
.card:hover, .review-cards-grid div:hover, .feature-grid > div:hover, .blog-post-teasers article:hover {
  box-shadow: 0 0 0 3px #ec9a2944, 0 7px 28px #171d2c44;
  transform: translateY(-2px) scale(1.018);
}

/* Accent lines */
.card::before, .review-cards-grid div::before, .feature-grid > div::before, .faq-accordion > div::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 3px;
  border-radius: 2px 2px 0 0;
  background: #ec9a29;
  opacity: 0.7;
}


/* ----- Buttons & Links ----- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.23s, box-shadow 0.18s, color 0.21s, transform 0.16s;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 14px 0 #1c3d8e33;
  will-change: background, color, box-shadow, transform;
}
.btn-primary {
  background: #ec9a29;
  color: #1a223a;
  box-shadow: 0 0 10px #ec9a29a0, 0 4px 20px #10152555;
}
.btn-primary:hover, .btn-primary:focus {
  background: #efa636;
  color: #161d34;
  box-shadow: 0 0 17px #ec9a29, 0 8px 26px #19318d33;
  transform: scale(1.04);
}
.btn-secondary {
  background: #18315A;
  color: #ec9a29;
  border: 1.5px solid #ec9a29;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #222e4a;
  color: #fff;
  box-shadow: 0 0 16px #ec9a29aa;
  transform: scale(1.04);
}
.btn-primary img, .btn-secondary img {
  height: 1.25em;
}

/* Links */
a { color: #ec9a29; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #faa92e; text-decoration: underline; }
nav a { color: #e6e9f0; margin: 0 12px; font-weight: 600; }
nav a.btn-primary, nav a.btn-secondary { margin: 0 0 0 26px; }


/* ----- Header, Navigation & Mobile Menu ----- */
header {
  width: 100%;
  background: #131C36;
  box-shadow: 0 1px 16px #151e3577;
  padding: 0;
  min-height: 65px;
  position: sticky;
  top: 0; left: 0;
  z-index: 50;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 65px;
}
header img {
  height: 45px; width: auto; margin: 6px 0 6px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
header nav a {
  font-size: 1.04rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #ec9a29;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 5px;
  transition: background 0.16s;
  z-index: 210;
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,49,90, 0.99);
  box-shadow: 0 10px 48px #0e152855;
  z-index: 3000;
  transform: translateX(-100vw);
  transition: transform 0.39s cubic-bezier(.77, 0, .18, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.41s cubic-bezier(.18, 0, .32, 1);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: #f4f4f8;
  border: none;
  margin: 32px 32px 8px 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 18px 8px 12px;
  transition: background 0.19s;
  z-index: 3200;
}
.mobile-menu-close:hover {
  background: #18264c77;
  color: #ec9a29;
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 45px;
  gap: 13px;
}
.mobile-nav a {
  color: #ec9a29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-shadow: 0 2px 20px #0004442d;
  letter-spacing: 0.02em;
  padding: 10px 6px 10px 0;
  margin: 0 0 2px 0;
  transition: color 0.19s, background 0.18s;
}
.mobile-nav a:hover {
  color: #fff;
  background: #ec9a2922;
  border-radius: 7px;
}

/* Disable scroll on body when menu open */
body.mobile-menu-active {
  overflow: hidden;
}

/* Hero Section */
.hero {
  background: linear-gradient(100deg,#18315A 40%,#232B4A 100%);
  border-radius: 0 0 32px 32px;
  padding: 56px 0 54px 0;
  margin-top: 1px;
  box-shadow: 0 8px 36px #182a4c25;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 { color: #fff; text-shadow: 0 2px 20px #18315a55; }
.hero p { color: #f4f4f8; }

/* ----- Feature Grid and Cards ----- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 0 240px;
  min-width: 240px;
  max-width: 340px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid img {
  width: 48px;
  margin-bottom: 6px;
}

/* ----- Offer List ----- */
ul > li > h3 > span {
  color: #ec9a29;
  margin-left: 12px;
  font-size: 1.08em;
  font-weight: 700;
}

/* ----- Testimonial Cards ----- */
.testimonial-card {
  margin-bottom: 22px;
  flex: 1 0 260px;
  min-width: 240px;
}

/* ----- Content Grids & Review Cards ----- */
.review-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.review-cards-grid div {
  flex: 1 0 240px;
  min-width: 220px;
  max-width: 320px;
}

/* ----- Filter & Sort UI ----- */
.filter-sort, .category-selector, .category-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: #ec9a29;
  font-family: 'Montserrat', Arial, sans-serif;
}
.filter-sort a, .category-selector a, .category-filter a {
  color: #e6e9f0;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  transition: color 0.2s, background 0.18s;
}
.filter-sort a:hover, .category-selector a:hover, .category-filter a:hover {
  color: #ec9a29;
  background: #232b4a;
}

/* ----- Table Styles ----- */
table {
  width: 100%;
  margin: 22px 0 18px 0;
  background: #232b4a;
  border-radius: 13px;
  border-spacing: 0;
  box-shadow: 0 1px 8px #101d3a22;
  overflow: hidden;
}
thead th {
  background: #18315a;
  color: #ec9a29;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 8px;
  font-size: 1.1em;
}
tbody td {
  padding: 13px 8px;
  color: #e6e9f0;
  font-size: 1em;
  border-top: 1px solid #222a43;
}
tbody tr:nth-child(odd) {
  background: #222a43;
}
tbody tr:hover {
  background: #18233a;
}


/* ----- Accordion FAQ ----- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.faq-accordion > div {
  cursor: pointer;
}
.faq-accordion > div h3 {
  color: #ec9a29;
  margin-bottom: 0px;
  font-size: 1.08rem;
}
.faq-accordion > div:hover {
  box-shadow: 0 0 0 2px #ec9a29bb, 0 5px 25px #20316822;
}


/* ----- Blog Cards & Pagination ----- */
.blog-post-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.blog-post-teasers article {
  flex: 1 0 240px;
  min-width: 210px;
  max-width: 330px;
  margin-bottom: 22px;
}
.pagination {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
}
.pagination a {
  background: #182d59;
  color: #ec9a29;
  padding: 6px 15px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover, .pagination a.active {
  background: #ec9a29;
  color: #161d34;
}

/* ----- Contact Details ----- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  color: #fff;
}
.contact-details img {
  height: 1.1em;
  margin-right: 10px;
}
.map-address {
  margin-top: 12px;
  padding: 17px 20px;
  border-radius: 12px;
  background: #232b49;
  color: #e6e9f0;
}


/* ----- Footer Section ----- */
footer {
  background: #161d34;
  color: #d7dbee;
  padding: 36px 0 0 0;
  margin-top: 45px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 24px #12204844;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  flex-direction: row;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a { color: #e6e9f0; font-weight: 500; margin: 0; }
footer nav a:hover {
  color: #ec9a29;
}
footer img {
  height: 38px;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
  color: #ffe8c6;
}
.contact-short img {
  height: 1em;
  margin-right: 7px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 19px;
  margin: 10px 0 0 0;
}
.social-links a img {
  height: 1.45em;
  opacity: 0.8;
  filter: drop-shadow(0 2px 10px #ec9a2935);
  transition: opacity 0.2s, filter 0.2s;
}
.social-links a img:hover {
  opacity: 1;
  filter: drop-shadow(0 2px 22px #ec9a29cc);
}
.legal-links {
  margin-top: 25px;
}
.legal-links p {
  color: #b8bfff;
  font-size: 0.98em;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  footer img { height: 30px; }
}

/* ----- Responsive Patterns ----- */
@media (max-width: 1100px) {
  .feature-grid, .card-container, .review-cards-grid, .blog-post-teasers {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 750px) {
  .feature-grid > div, .review-cards-grid > div, .blog-post-teasers article {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  header .container, footer .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card, .card, .review-cards-grid div, .feature-grid > div, .blog-post-teasers article {
    padding: 15px 9px;
  }
}

/* Utility Classes */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mb-1 { margin-bottom: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.d-flex { display: flex!important; }
.flex-column { flex-direction: column!important; }
.flex-row { flex-direction: row!important; }
.justify-center { justify-content: center!important; }
.align-center { align-items: center!important; }

/* ----- Cookie Consent Banner ----- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #18315A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 14px;
  gap: 18px;
  box-shadow: 0 -2px 18px #131f3d77;
  z-index: 7000;
  font-size: 1.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, bottom 0.33s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
  bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: auto;
}
.cookie-banner button {
  padding: 9px 21px;
  border-radius: 99px;
  border: none;
  font-size: 1em;
  background: #ec9a29;
  color: #182d59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-left: 5px;
  transition: background 0.18s, color 0.16s;
}
.cookie-banner button.cookie-settings {
  background: #222a43;
  color: #ec9a29;
  border: 1px solid #ec9a29;
}
.cookie-banner button.cookie-settings:hover { background: #ec9a29; color:#182d59; }
.cookie-banner button:hover {
  background: #efa636;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 0.97em;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
  }
}

/* ----- Cookie Modal ----- */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(14,20,38,0.88);
  z-index: 7500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-bg.active {
  display: flex;
}
.cookie-modal {
  background: #232b4a;
  color: #fff;
  border-radius: 18px;
  padding: 35px 30px 25px 30px;
  min-width: 310px;
  min-height: 220px;
  box-shadow: 0 12px 40px #18315a88;
  transition: transform 0.19s, opacity 0.21s;
  position: relative;
}
.cookie-modal h2 {
  color: #ec9a29;
  font-size: 1.16em;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #ec9a29;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-categories {
  margin-bottom: 20px;
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border-radius: 20px;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #ec9a29;
  color: #182d59;
  transition: background 0.16s;
}
.cookie-modal .cookie-btn.close {
  background: #232a45;
  color: #ec9a29;
  border: 1px solid #ec9a29;
}
.cookie-modal .cookie-btn.close:hover {
  background: #ec9a29;
  color: #182d59;
}
.cookie-modal .cookie-btn:hover {
  background: #efa636;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 19px 7vw 19px 7vw;
  }
}


/* ----- Animations ----- */
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero, section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  animation: fadeInSlide 0.7s cubic-bezier(.22,.86,.41,.98) 0.05s 1;
}

/* Miscellaneous Styles */
::-webkit-scrollbar {
  width: 10px;
  background: #181f31;
}
::-webkit-scrollbar-thumb {
  background: #232b4a;
  border-radius: 8px;
}

input, textarea, select {
  background: #232b4a;
  color: #fff;
  border: 1.5px solid #1a223a;
  border-radius: 7px;
  padding: 8px 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #ec9a29;
}

/* Hide placeholder for empty table headers */
th:empty { display: none; }

/* ----- END OF STYLE.CSS ----- */
