/* -------------------- 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #101822;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, li {
  list-style: none;
}

/* ------------------ BRAND FONTS ------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary: #234155;
  --secondary: #FFE6B6;
  --accent: #D4531C;
  --background: #101822;
  --background-light: #182b3a;
  --card: #14212d;
  --testimonial-bg: #fff;
  --testimonial-text: #212121;
  --shadow: 0 4px 24px rgba(44,168,255,0.10), 0 0 4px #234155;
  --radius: 18px;
  --radius-sm: 12px;
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
  --box-gap: 24px;
  --container-width: 1200px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}


/* ------------------ GENERAL LAYOUT ------------------ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 18px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--background);
  background-image: linear-gradient(120deg, #183046 0%, #234155 100%);
  color: #fff;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

p, li {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #e2e9ef;
  line-height: 1.7;
}
strong { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

main section:not(.hero) {
  background: var(--background-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 0;
}
.text-section {
  gap: 16px;
}

/* ------------------ FLEX UTILITY CLASSES ------------------ */
.header-flex, .footer-flex, .feature-grid, .team-member-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.header-flex, .footer-flex {
  align-items: center;
  justify-content: space-between;
}
.feature-grid {
  justify-content: space-between;
  margin-top: 24px;
}
.team-member-list {
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px;
}

.card-container {
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 28px 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testimonial-bg);
  color: var(--testimonial-text);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(35,65,85,0.10);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Make sure all cards/sections are spaced */
section, .card, .testimonial-card, .feature-item, .highlight-tile {
  margin-bottom: 20px;
}


/* -------------- HEADER ---------------- */
header {
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 30;
  padding-top: 16px;
}
header .container {
  align-items: center;
  min-height: 70px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  padding: 6px 10px;
  color: #e2e9ef;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--secondary);
  background: rgba(212, 83, 28, 0.14);
}
.cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 0 16px 0 #D4531C60;
  margin-left: 16px;
  transition: var(--transition);
  cursor: pointer;
  outline: none;
}
.cta-btn:hover,.cta-btn:focus {
  background: #B43E0D;
  color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255,230,182,0.24);
  transform: translateY(-2px) scale(1.04);
}

/* ---------------- HERO SECTIONS ------------------ */
.hero {
  background: linear-gradient(120deg, #234155 0%, #314d63 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  padding: 48px 0 56px 0;
  position: relative;
  overflow: hidden;
  /* neon accent ring */
  border: 2px solid #27e6e6;
  box-shadow: 0 0 32px 0 #27e6e622, var(--shadow);
}
.hero h1 {
  color: var(--secondary);
  text-shadow: 0 2px 8px #23415580;
  font-size: 2.2rem;
}
.hero p {
  color: #e2e9ef;
}

/* ------------- CARDS & FEATURES ------------- */
.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--box-gap);
}
.feature-grid > div, .highlight-tile {
  background: linear-gradient(120deg, #182b3a 0%, #2d435a 100%);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 14px 0 #27E6E610;
  padding: 28px 22px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 350px;
  text-align: left;
  margin-bottom: 0;
  border: 1.5px solid #23415560;
  position: relative;
  transition: box-shadow 0.23s, border 0.23s, transform 0.23s;
}
.feature-grid > div:hover, .highlight-tile:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 28px #D4531C22, 0 0 0 1.5px var(--accent);
  transform: scale(1.025) translateY(-3px);
}
.feature-grid img, .highlight-tile img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px #27e6e6b0);
  margin-bottom: 12px;
  display: block;
}

.highlight-tile {
  margin-bottom: 0;
}

/* --------------- LISTS/UL STYLING --------------- */
ul {
  margin-top: 0;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 9px;
  padding-left: 26px;
  position: relative;
  color: #e2e9ef;
  font-size: 1rem;
}
ul li::before {
  content: "";
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin-right: 13px;
  background: var(--accent);
  position: absolute;
  left: 0; top: 8px;
}

/* -------------- TESTIMONIALS --------------- */
.testimonial-card {
  background: var(--testimonial-bg);
  color: var(--testimonial-text);
  box-shadow: 0 4px 18px rgba(35, 65, 85, 0.12);
  border-left: 4px solid var(--accent);
  padding: 24px 30px;
  margin-bottom: 24px;
  font-size: 1.15rem;
  position: relative;
  min-width: 220px;
  max-width: 570px;
}
.testimonial-card p {
  color: #212121;
  margin-bottom: 8px;
}
.testimonial-card span {
  display: flex;
  align-items: center;
  font-size: 0.97rem;
  color: #333;
}
.testimonial-card img {
  width: 20px;
  height: 20px;
  margin-right: 2px;
  filter: drop-shadow(0 0 2px #ffd36e);
}

/* -------------- CTA SECTIONS --------------- */
.content-wrapper .cta-btn {
  margin-left: 0;
  margin-top: 12px;
}

/* -------------- FOOTER --------------- */
footer {
  background: #1C2D3B;
  padding: 34px 0 16px 0;
  color: #fff;
  border-top: 2px solid #23415533;
}
.footer-flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: #e2e9ef;
  padding: 3px 0;
  font-size: 1rem;
  opacity: 0.9;
  transition: var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  text-shadow: 0 2px 10px #D4531C44;
  opacity: 1;
}
.footer-contact p {
  color: #e2e9ef;
  font-size: 0.95rem;
}

/* -------------- TEAM SECTION -------------- */
.team-member-list {
  gap: 24px;
  flex-wrap: wrap;
}
.team-member {
  background: linear-gradient(110deg, #202f44 0%, #22354c 100%);
  color: #e2e9ef;
  border-radius: var(--radius-sm);
  padding: 22px 18px 18px 18px;
  box-shadow: 0 1.5px 12px #23415533;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 0;
  border-left: 4px solid #27e6e6;
  position: relative;
}
.team-member h3 {
  color: var(--secondary);
  margin-bottom: 7px;
  font-size: 1.1rem;
}

/* ------------- CONTACT SECTION ------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #e2e9ef;
}
.contact-details img {
  width: 18px;
  height: 18px;
}
.address-block, .business-hours {
  background: #22354c;
  color: #ffe6b6;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 0;
  margin-top: 14px;
}
.address-block h3, .business-hours h3 {
  color: #27e6e6;
  margin-bottom: 6px;
  font-size: 1.05rem;
}


/* -------------- MOBILE MENU  --------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 2.15rem;
  position: absolute;
  right: 28px;
  top: 20px;
  z-index: 118;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 11px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #18415999;
  outline: 2px solid var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(110deg, #14212d 70%, #D4531C 180%);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.49, .06, .33, 1.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 34px 18px 28px;
  box-shadow: 0 0 32px 0 #10182288;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 2.4rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
  border-radius: 50%;
  transition: background 0.18s;
  padding: 4px 13px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #D4531C33;
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  border-left: 4px solid transparent;
  padding: 8px 0 8px 9px;
  transition: var(--transition);
  min-height: 40px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  border-left: 4px solid var(--accent);
  background: #23415550;
  color: var(--accent);
}
@media (max-width: 1024px) {
  .header-flex nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .header-flex nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 32px 16px 12px 14px;
  }
}

/* -------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  background: linear-gradient(89deg, #182b3a 80%, #27e6e6 160%);
  color: var(--secondary);
  border-top: 2.5px solid var(--accent);
  padding: 24px 20px 20px 20px;
  box-shadow: 0 -4px 28px #10182244;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.28s, transform 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  color: var(--secondary);
  text-align: center;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  appearance: none;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 10px #D4531C30;
  transition: var(--transition);
  cursor: pointer;
}
.cookie-btn.cookie-reject {
  background: #14212d;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #27e6e6;
  border: 2px solid #27e6e6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B43E0D;
  color: var(--secondary);
  transform: translateY(-1px) scale(1.025);
  outline: none;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #234155;
  color: #27e6e6;
}

/* -------------- COOKIE MODAL --------------- */
.cookie-modal {
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,24,34,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-box {
  background: #223f58;
  border-radius: var(--radius);
  padding: 38px 26px 32px 26px;
  box-shadow: 0 4px 40px #27e6e6cc;
  color: #D5F4FF;
  max-width: 375px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin: 0 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  color: #27e6e6;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 10px;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #27e6e640;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  outline: none;
  width: 44px; height: 24px;
  background: #1c2f4e;
  border-radius: 16px;
  position: relative;
  transition: background 0.18s;
  border: 2px solid #27e6e6;
}
.cookie-toggle:checked {
  background: #27e6e6;
  border-color: #27e6e6;
}
.cookie-toggle::before {
  content: '';
  left: 3px; top: 3px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  transition: 0.2s;
  box-shadow: 0 2px 5px #14212d55;
}
.cookie-toggle:checked::before {
  left: 23px;
  background: var(--accent);
}
.cookie-toggle[disabled], .cookie-toggle[readonly] {
  filter: grayscale(90%);
  opacity: 0.7;
}

/* -------------- ANIMATIONS --------------- */
@keyframes neon-glow {
  0% { box-shadow: 0 0 10px #27e6e6, 0 0 20px #27e6e6; }
  100% { box-shadow: 0 0 20px #27e6e6, 0 0 40px #27e6e6; }
}

.cta-btn:hover, .cookie-btn:hover, .highlight-tile:hover, .feature-grid > div:hover {
  animation: neon-glow 0.6s alternate infinite;
}

/* -------------- RESPONSIVE ----------------- */
@media (max-width: 900px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 890px) {
  .feature-grid, .team-member-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .footer-flex {
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 42px;
  }
  .hero {
    padding: 34px 0 38px 0;
    border-radius: var(--radius-sm);
  }
  .feature-grid > div, .highlight-tile, .team-member {
    max-width: 100%;
    min-width: 150px;
    margin-bottom: 0;
    padding: 22px 13px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 20px 12px;
  }
  .card {
    padding: 18px 9px;
  }
  .content-grid {
    gap: 13px;
  }
  .footer-flex {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .section { padding: 13px 2px; margin-bottom: 28px; }
  .hero { padding: 18px 0 20px 0; }
  .cookie-modal-box { padding: 22px 4px 14px 7px; }
}

/* -------------- GLOBAL FOCUS STYLES --------------- */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* -------------- SCROLLBAR ----------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #183046;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #234155;
  border-radius: 7px;
}

/* Clean up non-existent grid/column properties! No grid used anywhere. Only flex layouts. */
