/* --- CSS 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #101624;
  color: #D6EAF7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: #F5BE45;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff88a;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F5BE45;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.375rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
p, li, address {
  font-size: 1rem;
  color: #D6EAF7;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #fff;
}

/* --- CONTAINERS & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: rgba(25, 57, 82, 0.86);
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(17,34,86,0.13);
  padding: 40px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(1px);
}

/* MAIN SPACING/SECTION PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #172a3a;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 12px 0 rgba(29,36,62,0.11);
  overflow: hidden;
  padding: 32px 24px;
}
.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;
  background: #fff;
  color: #1B2533;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(25,53,82,0.11);
  padding: 20px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #1B2533;
  font-size: 1.125rem;
  font-style: italic;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  color: #193952;
  font-size: 1rem;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #13243C;
  box-shadow: 0 3px 24px 0 rgba(25,57,82,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #D6EAF7;
  padding: 6px 10px;
  border-radius: 5px;
  transition: color 0.18s, background 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #222f43;
  color: #F5BE45;
}

/* --- PRIMARY/SECONDARY BUTTONS --- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 28px;
  margin-top: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(245,190,69,0.13);
  background: linear-gradient(90deg, #193952 82%, #F5BE45 100%);
  color: #fff;
  transition: background 0.23s, color 0.18s, box-shadow 0.18s;
  text-shadow: 0 1px 8px rgba(249,239,196,0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #F5BE45 40%, #ffec83 100%);
  color: #101624;
  box-shadow: 0 3px 18px 0 #F5BE4544;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #F5BE45;
  color: #F5BE45;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #193952;
  color: #fff;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  background: #16253A;
  color: #F5BE45;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F5BE45;
  color: #101624;
}
.mobile-menu {
  position: fixed;
  background: #101624ee;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.81, .04, .26, 1.04);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #F5BE45;
  background: #172a3a;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 301;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #13243C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 96px 0 0 34px;
}
.mobile-nav a {
  color: #F5BE45;
  background: none;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 0;
  letter-spacing: 1px;
  border-radius: 0;
  transition: color 0.15s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: none;
  text-decoration: underline;
}

/* --- HERO & FEATURES --- */
section {
  margin-bottom: 60px;
  padding: 40px 0 10px 0;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.features-grid > div {
  background: #142232;
  border-radius: 16px;
  flex: 1 1 250px;
  padding: 28px 18px;
  min-width: 240px;
  max-width: 320px;
  box-shadow: 0 2px 10px 0 rgba(25,57,82,0.05);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 5px solid #F5BE45;
  position: relative;
  transition: box-shadow 0.18s, border-left 0.15s;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  box-shadow: 0 6px 36px -5px #F5BE4544;
  border-left: 5px solid #D6EAF7;
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
}

/* --- CARD LINKS, HIGHLIGHTS --- */
.content-wrapper > a,
.content-wrapper a.btn-primary {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.07rem;
  font-weight: 700;
}
.content-wrapper ul li strong {
  color: #F5BE45;
}

/* --- CTA / ORDER SECTION --- */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 12px;
}

/* --- FOOTER --- */
footer {
  background: #13243C;
  color: #D6EAF7;
  margin-top: 50px;
  font-size: 0.99rem;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 12px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #F5BE45;
  transition: color 0.15s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #D6EAF7;
}
.footer-contact {
  margin-bottom: 10px;
  color: #D6EAF7;
}
.footer-contact img {
  vertical-align: middle;
  width: 19px;
  height: 19px;
  margin-right: 6px;
  opacity: 0.85;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #F5BE45;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  margin-top: 10px;
}
.footer-branding img {
  width: 52px;
  height: auto;
}

/* --- FORMS & ADDRESS --- */
address, .text-section address {
  background: #172a3a;
  border-radius: 11px;
  color: #fff;
  padding: 24px;
  margin-top: 13px;
  margin-bottom: 17px;
  font-style: normal;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
}

/* --- TEXT SECTIONS, PRIVACY/TOS --- */
.text-section {
  background: #122649;
  color: #D6EAF7;
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 16px;
}
.text-section h2, .text-section h3, .text-section h4 {
  color: #F5BE45;
  margin-top: 18px;
}
.text-section ul {
  margin-bottom: 15px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 900;
  background: #13243C;
  color: #fff;
  padding: 26px 14px 24px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  box-shadow: 0 -3px 20px 0 #1016243b;
  font-size: 1.02rem;
  justify-content: space-between;
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  background: #F5BE45;
  color: #13243C;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 1.03rem;
  margin-right: 6px;
  transition: background 0.18s, color 0.14s;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 #F5BE4522;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #193952;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #193952;
  color: #F5BE45;
  border: 2px solid #F5BE45;
}
.cookie-banner .cookie-settings:hover {
  background: #fff; color: #13243C;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  background: #101624c7;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-content {
  background: #13243C;
  border-radius: 18px;
  padding: 32px 28px 18px 28px;
  width: 95%;
  max-width: 420px;
  color: #F5BE45;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 8px 38px 0 #1B253399;
  animation: modal-in 0.3s cubic-bezier(.7,.13,.32,1.09);
}
@keyframes modal-in {
  from { transform: translateY(60px) scale(0.94); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal .modal-content h2 {
  color: #F5BE45;
  margin-bottom: 12px;
}
.cookie-modal .category-list {
  margin: 28px 0 22px 0;
}
.cookie-modal .category-list label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  color: #D6EAF7;
  margin-bottom: 14px;
}
.cookie-modal .category-list input[type=checkbox]:not(:disabled) {
  accent-color: #F5BE45;
}
.cookie-modal .category-list input[type=checkbox]:disabled {
  accent-color: #aaa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 17px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  background: #F5BE45;
  color: #13243C;
  font-size: 1.08rem;
  padding: 8px 18px;
  transition: background 0.16s, color 0.14s;
  cursor: pointer;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #193952;
  color: #fff;
}

/* --- ANIMATIONS & TRANSITIONS --- */
.button, .btn-primary, .btn-secondary, .features-grid > div, .testimonial-card {
  transition: box-shadow 0.19s, background 0.18s, color 0.14s, border 0.16s;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1140px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 991px) {
  .footer-nav {
    gap: 22px;
  }
  .features-grid {
    gap: 18px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper,
  .card,
  .text-section {
    padding: 22px 8px;
  }
  section {
    padding: 24px 0 3px 0;
    margin-bottom: 34px;
  }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 18px 8px;
    gap: 12px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.97rem;
    gap: 7px;
    padding: 14px 8px 13px 11px;
  }
  .cookie-modal .modal-content {
    padding: 20px 7px 12px 14px;
    max-width: 97vw;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 430px) {
  .btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal button {
    font-size: 0.97rem;
    padding: 8px 13px;
  }
  .cookie-modal .modal-content {
    padding: 8px 4px 10px 7px;
  }
}

/* --- SCROLLBAR CUSTOMIZATION --- */
::-webkit-scrollbar {
  width: 11px;
  background: #13243C;
}
::-webkit-scrollbar-thumb {
  background: #193952;
  border-radius: 8px;
}

/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* --- FOCUS VISIBLE --- */
*:focus-visible { outline: 2px solid #F5BE45; outline-offset: 2px; }

/* --- NEON EFFECTS (ACCENTS) --- */
.neon {
  color: #F5BE45;
  text-shadow: 0 0 5px #F5BE4577,0 0 10px #F5BE4555;
}
.neon-box {
  box-shadow: 0 0 12px 1px #F5BE4566, 0 4px 24px 0 #19395222;
}

/* --- VISUAL HIERARCHY & SHADOWS --- */
.card, .content-wrapper, .features-grid>div, .testimonial-card {
  box-shadow: 0 1px 14px 0 rgba(25,57,82,0.10);
}

/* --- Hide mobile menu on desktop --- */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
  }
}

/* --- END CSS FILE --- */