/* ------------------------------
   CSS RESET & NORMALIZATION
------------------------------ */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #0E2028;
  color: #EFF8FC;
  position: relative;
}
*::-webkit-scrollbar {
  width: 8px;
  background: #1b2931;
}
*::-webkit-scrollbar-thumb {
  background: #215067;
  border-radius: 4px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #AF8354;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD700;
  text-shadow: 0 0 8px #AF8354;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }

/* ------------------------------
   BRAND TYPOGRAPHY & COLORS
------------------------------ */
:root {
  --primary: #215067;
  --secondary: #AF8354;
  --accent: #F4F4F4;
  --bg-dark: #0E2028;
  --bg-light: #1b2931;
  --bg-card: #192733;
  --text-main: #EFF8FC;
  --text-subtle: #A6BECF;
  --white: #fff;
  --shadow: 0 4px 24px 0 rgba(33,80,103,0.13);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --neon: 0 0 6px #AF8354, 0 0 12px #215067;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.3; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p, li, address {
  font-size: 1rem;
  color: var(--text-main);
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
}

/* ------------------------------
   GLOBAL LAYOUT
------------------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main {
  min-height: 60vh;
}

/* ------------------------------
   SECTIONS
------------------------------ */
section {
  background: var(--bg-dark);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
}

/* ------------------------------
   HEADER & NAVIGATION
------------------------------ */
header {
  width: 100%;
  background: var(--bg-light);
  box-shadow: 0 2px 16px 0 rgba(33,80,103,0.10);
  padding: 0;
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 74px;
}
header a img {
  height: 38px;
  display: block;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid transparent;
  padding: 4px 6px;
  transition: color 0.18s, border-bottom 0.2s;
  font-weight: 600;
}
nav a:hover, nav a:focus {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
  text-shadow: var(--neon);
}
.cta.primary {
  background: var(--secondary);
  color: #1b2931;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  outline: none;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(175,131,84,0.22);
  font-size: 1.07rem;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s, transform 0.15s;
  text-shadow: 0 1px 1.5px #fff1;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD700;
  color: var(--primary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px 0 #AF835455, 0 0 12px 2px #FFD70077;
  text-shadow: var(--neon);
}
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  header .container {
    gap: 6px;
  }
  nav {
    gap: 12px;
  }
  .cta.primary {
    margin-left: 10px;
    padding: 10px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 6px;
  }
  nav {
    flex-wrap: wrap;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2.25rem;
    padding: 4px 14px;
    line-height: 1;
    cursor: pointer;
    margin-left: 0;
    z-index: 41;
    transition: color 0.2s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: var(--secondary);
    text-shadow: var(--neon);
  }
}

/* ------------------------------
   MOBILE MENU (SLIDE)
------------------------------ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 86vw;
  max-width: 340px;
  background: linear-gradient(110deg, #151e28 70%, #215067 100%);
  padding: 0 0 0 0;
  z-index: 50;
  box-shadow: 0 0 48px -12px #215067cc;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(.77,.2,.24,1);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  transition-timing-function: cubic-bezier(.66,0,.03,1.02);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 1.9rem;
  border: none;
  align-self: flex-end;
  margin: 24px 20px 0 0;
  cursor: pointer;
  z-index: 52;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  text-shadow: var(--neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 28px 0 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 0;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.23s, background 0.2s;
  border-radius: 0 16px 16px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-left: 3px solid #FFD700;
  background: rgba(175,131,84,0.09);
  text-shadow: var(--neon);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    max-width: 99vw;
    width: 99vw;
  }
  .mobile-nav {
    padding: 34px 13px 0 17px;
    gap: 20px;
  }
}

/* ------------------------------
   SECTION, CARDS, GRID, CONTENT
------------------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 32px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 44px 0 rgba(33,80,103,0.22), 0 0 24px 2px var(--secondary);
  transform: translateY(-6px) scale(1.01);
  z-index: 2;
}
.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) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ------------------------------
   LISTS, FEATURES
------------------------------ */
ul, ol {
  margin: 0 0 0 20px;
  color: var(--text-main);
}
ul li, ol li {
  padding: 8px 0 8px 0;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
ul li img, ol li img {
  width: 32px;
  height: 32px;
}

/* ------------------------------
   TESTIMONIAL CARDS
------------------------------ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  color: #212833;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  box-shadow: 0 2px 20px -2px #21506722;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 5px solid var(--secondary);
}
.testimonial-card strong {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.16rem;
}
.testimonial-card span {
  color: #38526c;
  font-size: 0.98rem;
}
.testimonial-card p {
  color: #222a34;
  font-size: 1.01rem;
  margin: 0;
  text-align: left;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 44px 0 rgba(33,80,103,0.13), 0 0 16px 0 #AF8354cc;
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px;
    font-size: 0.99rem;
    gap: 10px;
  }
}

/* ------------------------------
   FAQ ACCORDION
------------------------------ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.faq-accordion > div {
  background: var(--bg-card);
  color: var(--text-main);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 1.04rem;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 #21506711;
}
.faq-accordion > div strong {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.faq-accordion a {
  color: var(--primary);
  text-decoration: underline;
}
.faq-accordion a:hover, .faq-accordion a:focus {
  color: var(--secondary);
  text-shadow: 0 0 8px #AF835455;
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: #16202a;
  color: var(--text-subtle);
  padding: 38px 0 0 0;
  border-top: 2px solid var(--primary);
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
}
.footer-nav {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-subtle);
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--secondary);
  margin: 0 5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD700;
  text-shadow: 0 0 8px #AF8354aa;
}
footer address {
  font-style: normal;
  color: var(--text-main);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-top: 8px;
}
footer img {
  height: 32px;
  margin-bottom: 12px;
}
footer address img{
  width: 18px;
  vertical-align: bottom;
  margin: 0 6px 0 0;
}
@media (max-width:600px){
  footer .container{
    padding: 0 7px;
    gap: 14px;
  }
  .footer-nav {
    font-size: 0.98rem;
  }
}

/* ------------------------------
   BUTTONS & LINKS
------------------------------ */
.cta {
  background: transparent;
  color: var(--secondary);
  font-family: var(--font-display);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-sm);
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.18s, color 0.16s, border 0.2s, box-shadow 0.14s, transform 0.14s;
  box-shadow: none;
  text-shadow: none;
}
.cta:hover, .cta:focus {
  background: var(--secondary);
  color: var(--bg-dark);
  border-color: #FFD700;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 2px 18px 0 #AF835477;
  text-shadow: var(--neon);
}
/* Utility for other prominent actions */
.cta.secondary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FFD700;
  color: var(--primary);
  border-color: #FFD700;
  box-shadow: 0 2px 18px 0 #21506733;
}

/* ------------------------------
   RESPONSIVE FLUID SPACING/GAPS
------------------------------ */
@media (max-width: 500px) {
  .container {
    padding: 0 4px;
  }
  .section,
  section {
    padding: 22px 2px;
    margin-bottom: 22px;
  }
  .card, .testimonial-card { padding: 12px 8px; }
}

/* ------------------------------
   MICRO-INTERACTIONS
------------------------------ */
.card, .testimonial-card, .cta, .cta.primary, .mobile-menu, .mobile-menu-close {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s, border 0.18s, transform 0.18s;
}

/* ------------------------------
   COOKIES CONSENT BANNER
------------------------------ */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #192733;
  color: var(--accent);
  width: 100vw;
  font-size: 1rem;
  box-shadow: 0 -2px 16px 0 #21506733;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 20px 40px 20px 40px;
  opacity: 1;
  transition: transform 0.36s, opacity 0.18s;
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(180%) scale(0.95);
  pointer-events: none;
}
#cookie-banner .cookie-text {
  flex: 1 1 0;
  color: var(--accent);
  font-size: 1rem;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#cookie-banner button, .cookie-modal button {
  padding: 8px 16px;
  font-size: 1rem;
  font-family: var(--font-display);
  border-radius: var(--radius-sm);
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: var(--bg-dark);
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 #AF835477;
  transition: background 0.16s, color 0.16s, border 0.14s, box-shadow 0.14s;
}
#cookie-banner button:hover, .cookie-modal button:hover {
  background: #FFD700;
  color: var(--primary);
  border-color: #FFD700;
  box-shadow: 0 2px 16px #AF835455;
}
#cookie-banner .settings-btn {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
#cookie-banner .settings-btn:hover {
  color: #FFD700;
  border-color: #FFD700;
  background: #fffbe8;
}

/* COOKIES MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #0E2028cc;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #16202a;
  color: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 4px #21506755;
  max-width: 92vw;
  min-width: 310px;
  width: 400px;
  padding: 32px 30px 22px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInPop 0.35s cubic-bezier(.5,1.4,.27,1.06) 1;
}
@keyframes fadeInPop {
  0% { opacity:0; transform: scale(0.82) translateY(40px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #FFD700;
  margin: 0 0 7px 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #192733;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
}
.cookie-category strong {
  font-size: 1.04rem;
  font-family: var(--font-display);
  color: #FFD700;
}
.cookie-category label {
  font-size: 1.01rem;
  color: var(--accent);
  margin-left: 6px;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #3c5770;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.17s;
  box-shadow: 0 1.5px 4px 0 #21506744;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s, background 0.16s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
  background: #FFD700;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.cookie-modal-close:hover {
  color: #FFD700;
}
@media (max-width: 600px) {
  #cookie-banner {
    padding: 14px 6px;
    font-size: 0.93rem;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 95vw;
    width: 95vw;
    padding: 16px 7px 10px 7px;
  }
}

/* ------------------------------
   DECORATIVE NEON/TECH LINES (optional)
------------------------------ */
section:before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 14px;
  width: 48px;
  height: 3.8px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FFD700 0%, #AF8354 100%);
  opacity: 0.69;
  box-shadow: 0 0 22px 0px #FFD70088;
  z-index: 0;
}
@media (max-width:600px){
  section:before { width: 32px; }
}

/* ------------------------------
   FORM ELEMENTS (if any)
------------------------------ */
input, textarea, select {
  font-family: var(--font-body);
  background: var(--bg-card);
  color: var(--text-main);
  border: 2px solid var(--secondary);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFD700;
}
::-webkit-input-placeholder {
  color: #A6BECF;
}
::-moz-placeholder {
  color: #A6BECF;
}
:-ms-input-placeholder {
  color: #A6BECF;
}
::placeholder {
  color: #A6BECF;
}

/* ------------------------------
   UTILITY CLASSES
------------------------------ */
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* ------------------------------
   CUSTOM SCROLL INDICATOR
------------------------------ */
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #215067 0%, #AF8354 100%);
}

/* ------------------------------
   PRINT STYLES (optional)
------------------------------ */
@media print {
  header, footer, #cookie-banner, .mobile-menu { display: none !important; }
  section, .card, .container { box-shadow: none!important; background: #fff !important; color: #000 !important; }
}
