/* CSS RESET & NORMALIZE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  background: #1B263B;
  color: #FFFFFF;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100%;
}
body {
  background: #1B263B;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #E0A458;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffd289;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

/* FONT IMPORT (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700|Lato:400,700&display=swap');

/* VARIABLES */
:root {
  --primary: #1B263B;
  --secondary: #FFFFFF;
  --accent: #E0A458;
  --accent-neon: #FFD289;
  --off-bg: #212F45;
  --card-bg: #222C3B;
  --shadow: 0 8px 32px 0 rgba(26,41,71,0.3);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* HEADER STYLES */
header {
  background: var(--primary);
  box-shadow: 0 2px 16px 0 rgba(9, 24, 48, 0.12);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 62px;
}
header img {
  height: 44px;
  width: auto;
}
/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: rgba(224, 164, 88, 0.07);
}
.main-nav .cta-primary {
  background: var(--accent);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 700;
  padding: 10px 24px;
  margin-left: 12px;
  box-shadow: 0 0 6px 1px var(--accent-neon), 0 0 0 2px transparent;
  transition: background 0.2s, box-shadow 0.25s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: var(--accent-neon);
  color: var(--primary);
  box-shadow: 0 0 12px 2px var(--accent-neon), 0 0 0 2px var(--accent-neon);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--accent);
  font-size: 2rem;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 35;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(224, 164, 88, 0.07);
  color: var(--accent-neon);
  box-shadow: 0 0 8px var(--accent-neon);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg, #222C3B 70%, #282C34 100%);
  box-shadow: 0 2px 24px 0 rgba(22,34,52,0.8);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.83,0,0.17,1);
  padding: 40px 28px 28px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent-neon);
  font-size: 2.1rem;
  border: none;
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 102;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(224, 164, 88, 0.09);
  color: #fffcec;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(224,164,88,0.05);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  header .container {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  header .container {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    gap: 8px;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, span, strong, b, em {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #F8FAFC;
  font-size: 1rem;
}
strong, b {
  color: var(--accent-neon);
  font-weight: 700;
}
.section ul, .section ol, ul, ol {
  margin-left: 0px;
  padding-left: 0px;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.content-wrapper ul, .content-wrapper ol {
  gap: 12px;
}

/* SECTION & CARD STRUCTURE */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 32px 0 var(--accent-neon), var(--shadow);
  transform: translateY(-3px) scale(1.014);
  z-index: 1;
}

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

/* FEATURE CARDS/GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: rgba(34, 44, 59, 1);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(27,38,59,0.16);
  padding: 26px 20px 22px 20px;
  min-width: 240px;
  flex: 1 1 270px;
  transition: box-shadow 0.21s, background 0.18s;
  border: 1.5px solid rgba(224, 164, 88, 0.08);
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 0 20px 0 var(--accent-neon), 0 2px 8px 0 rgba(27,38,59,0.07);
  background: #26314b;
}
.feature-grid img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 0 12px var(--accent-neon));
  margin-bottom: 10px;
}

/* Call To Action */
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 48px;
  padding: 15px 38px;
  margin-top: 20px;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow: 0 0 12px 1px var(--accent-neon),0 2px 8px rgba(27,38,59,0.20);
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.2s;
  text-shadow: 0 1px 1px #fff6;
  cursor: pointer;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffd289;
  color: #222C3B;
  box-shadow: 0 0 24px 3px var(--accent-neon),0 2px 8px rgba(27,38,59,0.15);
  transform: scale(1.035) translateY(-2px);
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimonial-slider {
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.testimonial-card {
  background: #fcfcfd;
  color: #1B263B;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(27,38,59,0.08);
  padding: 20px 32px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  max-width: 340px;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--accent);
  position: relative;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #23242f;
  font-size: 1.08rem;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 1rem;
  color: #8391a3;
  font-style: italic;
  font-family: 'Lato', Arial, sans-serif;
}
.star-rating {
  color: #E0A458;
  letter-spacing: 0.09em;
  font-size: 1.2rem;
  margin-top: -8px;
}

/* FOOTER */
footer {
  background: var(--off-bg);
  color: #fff;
  width: 100%;
  padding: 40px 0 30px 0;
  border-top: 2px solid #202634;
  margin-top: 64px;
}
footer .container {
  flex-direction: column;
  gap: 28px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
}
.footer-links a {
  color: #fff;
  opacity: 0.86;
  transition: color 0.18s, opacity 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent-neon);
  opacity: 1;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 1rem;
  color: #F7FAFC;
}
.brand-footer img {
  height: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px var(--accent));
}
.brand-footer span:first-of-type {
  color: var(--accent-neon);
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.brand-footer span:last-of-type {
  color: #708199;
  font-size: 0.97rem;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 9px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  transition: filter 0.18s, transform 0.16s;
  filter: grayscale(0.4) brightness(1.2) drop-shadow(0 0 6px var(--accent));
  cursor: pointer;
}
.social-icons img:hover {
  filter: grayscale(0) brightness(1.9) drop-shadow(0 0 14px var(--accent-neon));
  transform: scale(1.14);
}

/* FORMS & LISTS */
.privacy-disclaimer {
  background: #161f30;
  color: #ffcfa1;
  font-size: 0.98rem;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 11px;
}
.privacy-disclaimer a {
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
}

/* MISC GRID/TEXT-IMAGE & ALIGNMENTS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Typography & Spacing */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  .container { max-width: 99vw; }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }
  section, .section { padding: 24px 6vw; }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 8vw 20px 8vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  .cta-primary {
    padding: 12px 22px;
    font-size: 1rem;
  }
  .brand-footer {
    align-items: flex-start;
    text-align: left;
  }
  footer .container, .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section, section {
    margin-bottom: 38px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #202634cc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  z-index: 101;
  box-shadow: 0 -2px 32px 0 rgba(27,38,59,0.15);
  animation: cookiefade 0.68s;
  gap: 20px;
  font-size: 1rem;
}
@keyframes cookiefade {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 18px;
  border-radius: 8px;
  margin-right: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: none;
  outline: none;
}
.cookie-banner button.cookie-settings {
  background: none;
  color: var(--accent);
  border: 1.3px solid var(--accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--accent-neon);
  color: var(--primary);
  box-shadow: 0 0 10px 2px var(--accent-neon);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: none;
  color: var(--accent-neon);
  border-color: var(--accent-neon);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 8px;
    font-size: 0.96rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 110;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,25,32,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: var(--off-bg);
  color: #fff;
  min-width: 310px;
  max-width: 95vw;
  border-radius: 20px;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 4px 38px 4px rgba(27,38,59,0.17);
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  gap: 24px;
  animation: slideup 0.4s;
  position: relative;
}
@keyframes slideup {
  from { transform: translateY(80px) scale(0.97); opacity: 0.1; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--accent-neon);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.07rem;
  margin-left: 7px;
}
.cookie-modal .toggle {
  display: inline-block;
  width: 36px;
  height: 20px;
  background: #32445b;
  border-radius: 14px;
  margin-left: 8px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .toggle.enabled {
  background: var(--accent);
}
.cookie-modal .toggle .dot {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-modal .toggle.enabled .dot {
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 19px;
  background: none;
  color: var(--accent-neon);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
  border-radius: 8px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: rgba(224, 164, 88, 0.08);
  color: #fffcd9;
}


/* SCROLLBAR FUTURISTIC */
::-webkit-scrollbar { width: 12px; background: #212F45; }
::-webkit-scrollbar-thumb { background: linear-gradient(120deg, #343d57 60%, #E0A458 100%); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(120deg, #E0A458 40%, #ffd289 95%); }

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .feature-grid > div {
  transition: box-shadow 0.22s, transform 0.15s, background 0.18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover  {
  transform: translateY(-3px) scale(1.027);
  box-shadow: 0 0 24px 2px var(--accent-neon), var(--shadow);
}
.cta-primary, button, a {
  transition: color 0.18s, background 0.18s, box-shadow 0.17s, transform 0.13s;
}

/* NEON-LIKE FUTURISTIC EFFECTS */
.card, .testimonial-card, .feature-grid > div {
  border: 1.1px solid rgba(224, 164, 88, 0.10);
  box-shadow: 0 0 0 0 #0000, 0 1.5px 9px 0 rgba(224,164,88,0.05);
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  border-color: var(--accent-neon);
  box-shadow: 0 0 24px 2px var(--accent-neon);
}

/* FUTURISTIC ACCENTS (selection, highlights) */
::selection {
  background: var(--accent);
  color: #1B263B;
}

/* Spacing Rules For All Main Elements */
section, .section {
  margin-bottom: 60px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.card-container, .content-grid, .feature-grid {
  gap: 24px;
}
.card, .testimonial-card, .feature-grid > div {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}
@media (max-width: 600px) {
  section, .section { padding: 18px 3vw; }
  .footer-links, .brand-footer { font-size: 0.98rem; }
}

/* Accessibility: Leap focus for links */
a:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
button:focus { outline: 2px solid var(--accent-neon); outline-offset: 2px; }


/*---------- END OF CSS ----------*/