/* RESET/BASE STYLES -------------------------------------- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #171c24;
  color: #e1e8ef;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { color: #FFD600; text-decoration: none; transition: color 0.2s; word-break: break-word; }
a:hover, a:focus { color: #fff700; text-decoration: underline; }

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li { margin-bottom: 8px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.015em;
  margin-bottom: 14px;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; margin-top: 30px; }
h3 { font-size: 1.35rem; margin-top: 18px; }

p { margin-bottom: 16px; }
strong { color: #FFD600; }
blockquote {
  border-left: 4px solid #FFD600;
  margin: 24px 0 24px 0;
  padding: 16px 24px;
  background: #212a35;
  color: #FFE066;
  font-style: italic;
}

/* CONTAINER/WRAPPER ------------------------ */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* HEADER & NAVIGATION ---------------------- */
header {
  background: linear-gradient(90deg, #1A232E 90%, #1B5E20 100%);
  box-shadow: 0 2px 18px 0 rgba(23,36,45,.16);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.logo img {
  height: 38px;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 5px;
  color: #e1e8ef;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,.main-nav a:focus {
  background: #212a35;
  color: #FFD600;
}

header .cta.primary {
  margin-left: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFD600;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover { color: #fff; }

/* Mobile Menu -------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,35,46,0.96);
  box-shadow: 0 0 18px 2px #000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.33,1,.68,1), opacity 0.3s;
  opacity: 0;
  z-index: 200;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px 0 0;
  font-size: 2rem;
  color: #FFD600;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 210;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 36px;
  padding: 0 34px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: #FFD600;
  background: none;
  border: none;
  width: 100%;
  padding: 14px 4px;
  border-radius: 4px;
  margin-bottom: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #212a35; color: #fff; }

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(110deg,#1A232E 75%, #1B5E20 100%);
  padding: 40px 0 42px 0;
  margin-bottom: 60px;
  min-height: 310px;
  display: flex; align-items: center;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  width: 100%;
}
.hero h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.4rem;
  color: #FFD600;
  background: -webkit-linear-gradient(90deg, #FFD600 65%, #fffde9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px #1b5e2055;
  line-height: 1.15;
}
.hero p {
  color: #e1e8ef;
  font-size: 1.17rem;
  margin-bottom: 22px;
  max-width: 520px;
}
.hero .cta.primary { margin-top: 14px; }

/* ============ SECTIONS ============ */
section {
  margin-bottom: 60px;
  padding: 40px 0 ;
  background: none;
  width: 100%;
}
section:last-of-type { margin-bottom: 0; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARD & GRID patterns =============== */
.feature-grid, .service-teasers, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-card, .service-card {
  background: #232e3c;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 #121a2359;
  padding: 30px 24px 24px 24px;
  min-width: 235px;
  max-width: 340px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1.5px solid #22304e;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, border 0.25s, background 0.2s;
  position: relative;
}
.feature-card img {
  width: 42px;
  margin-bottom: 7px;
}
.feature-card h3, .service-card h3 { color: #FFD600; margin-bottom: 4px; font-size: 1.15rem; }
.feature-card p, .service-card p { color: #e1e8ef; font-size: 1rem; }
.feature-card:hover, .service-card:hover {
  box-shadow: 0 7px 36px 0 #FFD60066, 0 2px 12px 0 #0002;
  border: 1.5px solid #FFD600;
  background: #26364f;
  z-index: 2;
}

.service-card strong { color: #FFD600; }

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.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 -------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-top: 30px;
  background: #fffde9;
  color: #232e3c;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 #0002;
  border: 1.5px solid #FFD600;
  min-width: 220px; max-width: 540px;
  font-size: 1.12rem;
}
.testimonial-card p {
  color: #232e3c;
  margin-bottom: 5px;
}
.testimonial-card strong {
  color: #1864ab;
  font-size: 1rem;
  font-family: inherit;
}

/* Feature Item (for future use) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.call-to-action {
  background: linear-gradient(90deg, #1B5E20 62%, #FFD600 170%);
  box-shadow: 0 6px 44px -8px #1B5E20;
  border-radius: 13px;
  margin-bottom: 70px;
  padding: 44px 0;
}
.call-to-action .content-wrapper { align-items: center; justify-content: center; }
.call-to-action h2 { color: #fff;
  background: -webkit-linear-gradient(90deg, #FFD600 50%, #fffde9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;}

/* confirmation section (thanks.php) */
.confirmation {
  background: #1B5E20;
  border-top: 1px solid #FFD600;
  padding: 48px 0;
  text-align: center;
}
.confirmation h1 {
  color: #FFD600;
  text-shadow: 0 1px 12px #18330966;
  margin-bottom: 20px;
}
.confirmation p, .confirmation ul {
  color: #fff;
}

/* Text Section / Impact Section */
.text-section {
  margin-bottom: 30px;
}
.impact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.impact-section ul {
  flex: 1 1 250px;
}
.impact-section .testimonial-card {
  flex: 1 1 280px;
}

.contact-section {
  background: #232e3c;
  border-radius: 11px;
  padding: 23px 28px;
  margin-top: 10px;
  margin-bottom: 24px;
  color: #fff;
  max-width: 500px;
  box-shadow: 0 4px 18px 0 #1864ab14;
}
.contact-section p { margin-bottom: 8px; }
.contact-section a {color: #FFD600;}

.legal .text-section {
  background: #232e3c;
  padding: 30px 24px;
  border-radius: 10px;
  margin-top: 14px;
  box-shadow: 0 3px 18px 0 #121a231f;
}

/* BUTTONS/CTAs --------------- */
.cta, .cta-link, .cta.primary, .cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border: none;
  margin: 8px 0 0 0;
  text-align: center;
  cursor: pointer;
  min-width: 180px;
  transition: box-shadow .18s, background .16s, color 0.13s;
  box-shadow: 0 2px 18px 0 #ffd6002e, 0 1px 7px #0001;
}
.cta.primary {
  background: #FFD600;
  color: #1A232E;
  text-shadow: 0 1px 7px #1B5E2040;
  border: 1.5px solid #FFD600;
}
.cta.primary:hover,.cta.primary:focus {
  background: #fffbe7;
  color: #1B5E20;
  box-shadow: 0 4px 22px #FFD60060;
  border-color: #FFD600;
}
.cta.secondary {
  background: #1B5E20;
  color: #FFD600;
  border: 1.5px solid #FFD600;
}
.cta.secondary:hover,.cta.secondary:focus {
  background: #232e3c;
  color: #fff;
  border-color: #FFD600;
}
.cta-link {
  color: #FFD600;
  background: none;
  padding: 0;
  min-width: unset;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
}
.cta-link:hover, .cta-link:focus {
  color: #fff;
  text-decoration: underline;
  background: transparent;
}

button, .cta, .cta.primary, .cta.secondary {
  outline: none;
}
button:focus, .cta:focus {
  box-shadow: 0 0 0 3px #FFD60090;
}

/* Footer ---------------------- */
footer {
  background: #1A232E;
  color: #e1e8ef;
  margin-top: 12px;
  border-top: 2px solid #FFD60030;
  padding-top: 34px;
  padding-bottom: 38px;
}
footer .container { align-items: flex-start; }
footer .content-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-info, .footer-links, .footer-legal {
  min-width: 190px;
  margin-bottom: 12px;
}
.footer-links a, .footer-legal a {
  display: block;
  color: #FFD600;
  font-size: 0.97rem;
  padding: 2px 0;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; }
.footer-info a { color: #FFD600; }
.footer-info a:hover { color: #fff; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #212a35;
  color: #FFD600;
  padding: 27px 18px 21px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -3px 18px 0 #151e2750;
  border-top: 2px solid #FFD600;
  z-index: 9999;
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(.33,1,.68,1), opacity 0.2s;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #FFD600;
  color: #1A232E;
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  border: 1.5px solid #FFD600;
  color: #FFD600;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFD60010;
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #FFC600;
  color: #1A232E;
}

/* --- Cookie Modal --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 10000;
  background: rgba(23,29,36,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.27s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #232e3c;
  color: #FFD600;
  padding: 36px 30px 26px 30px;
  border-radius: 13px;
  min-width: 330px;
  max-width: 94vw;
  box-shadow: 0 8px 28px 0 #111a2460;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: #FFD600;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #FFD600;
  margin-right: 10px;
}
.cookie-modal .cookie-toggle {
  width: 35px;
  height: 19px;
  border-radius: 20px;
  background: #FFD60033;
  position: relative;
  cursor: pointer;
  border: 1.3px solid #FFD600;
  transition: background 0.2s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] { background: #FFD600; }
.cookie-modal .cookie-toggle:before {
  content: '';
  width: 15px; height: 15px;
  background: #232e3c;
  border-radius: 50%;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: left 0.25s, background 0.25s;
  box-shadow:0 1px 8px 0 #FFD6003e;
}
.cookie-modal .cookie-toggle[aria-checked="true"]:before {
  left: 18px;
  background: #FFD600;
  border: 1px solid #FFD600;
}
.cookie-modal .cookie-category .always-on-label {
  color: #999;
  font-size: 0.93rem;
  margin-left: 12px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-modal button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #FFD600;
  color: #1A232E;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal button.secondary {
  background: #212a35;
  color: #FFD600;
  border: 1.5px solid #FFD600;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #FFD60010;
  color: #ffffff;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #FFC600;
  color: #1A232E;
}

/* RESPONSIVE --- MOBILE-FIRST =============== */
@media (max-width:1150px) {
  .footer-brand, .footer-info, .footer-links, .footer-legal { min-width: 145px; }
}
@media (max-width:900px) {
  .footer-info, .footer-links, .footer-legal { min-width: 120px; }
  .feature-grid, .service-teasers, .service-list, .impact-section {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.11rem; }
  .container { padding-left: 12px; padding-right:12px; }
  header .container { padding-top: 12px; padding-bottom: 12px; gap: 15px; }
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display:inline-block; }
  header .cta.primary { margin-left: 6px; min-width: 124px; padding:10px 14px; font-size:0.99rem; }
  .hero { min-height: 210px; padding: 25px 0 27px 0; }
  .hero h1 { font-size: 1.6rem; }
  section { margin-bottom: 38px; padding: 26px 0; }
  .feature-grid, .service-teasers, .service-list, .impact-section {
    flex-direction: column;
    gap: 15px;
  }
  .feature-card, .service-card {
    min-width: 0; max-width: unset; width: 100%;
    padding: 18px 11px;
  }
  .testimonial-card {min-width: 0;max-width: unset;}
  .call-to-action { padding: 29px 0; margin-bottom: 36px; }
  .footer-brand img {height:26px;}
  .footer-info, .footer-links, .footer-legal {margin-bottom: 12px;min-width:0;}
  .content-wrapper { gap: 10px; }
  .text-image-section { flex-direction: column !important; gap: 14px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; font-size:0.97rem; padding: 16px 10px 13px 10px; }
}
@media (max-width:590px) {
  .footer .content-wrapper, .content-wrapper, .container { padding-left:8px; padding-right:8px; }
  .cookie-modal .cookie-modal-content { padding: 20px 6vw; min-width: 0; }
}

/* VISUAL EFFECTS / NEON ACCENTS ----------- */
.feature-card:hover, .service-card:hover,
.cta.primary:hover, .cta.secondary:hover, .cta-link:hover, .mobile-menu-close:hover,
.mobile-nav a:hover, .footer-links a:hover, .footer-legal a:hover {
  box-shadow: 0 0 16px 2px #FFD60060, 0 1px 7px #fff2;
}
.cta.primary, .cta.secondary {
  box-shadow: 0 0 10px 1px #ffd60036, 0 1px 8px 0 #232e3c0e;
}
.hero h1, .call-to-action h2 {
  text-shadow: 0 1px 16px #FFD60055, 0 2px 8px #0001;
}
.main-nav a.active, .main-nav a[aria-current="page"] {
  color: #FFD600;
  font-weight: bold;
}

/* ANIMATIONS/MICRO-INTERACTIONS --------------- */
.feature-card, .service-card, .testimonial-card, .cta.primary, .cta.secondary {
  transition: 
    box-shadow 0.23s cubic-bezier(.55,.17,.49,.77), 
    transform 0.18s,
    border 0.18s,
    background 0.18s;
}
.feature-card:active, .service-card:active {
  transform: translateY(2px) scale(0.98);
}
.cta.primary:active, .cta.secondary:active {
  transform: scale(0.98);
  box-shadow: 0 1px 10px #FFD60020;
}
.mobile-menu, .mobile-menu.open, .mobile-menu.closed {
  transition: transform 0.38s cubic-bezier(.41,1,.68,1), opacity 0.23s cubic-bezier(.41,1,.68,1);
}
.cookie-banner, .cookie-banner.closed {
  transition: transform 0.37s cubic-bezier(.68,.12,.96,.62), opacity 0.2s;
}

/* SCROLLBAR Styling for Futuristic Look */
body, .main-nav, .mobile-nav, .cookie-modal-content {
  scrollbar-width: thin;
  scrollbar-color: #FFD600 #232e3c;
}
body::-webkit-scrollbar { width: 8px; background: #232e3c; }
body::-webkit-scrollbar-thumb { background: #FFD600; border-radius: 8px; }

/* ----------- END -------------- */
