/* ===============================================================
   FizzleBolt Moment - CSS Stylesheet (Professional Corporate)
   Style: Blue/Gray, Structured, Montserrat/Verdana, Formal & Inviting
   Flexbox-Only / No Grid / No Columns / No clamp()
   =============================================================== */

/* ========================
   RESET & BASE STYLES
   ======================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Verdana', Arial, sans-serif;
  color: #203842;
  background-color: #F9FAFB;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 1rem;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #17425D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #61B15A;
  text-decoration: underline;
}
strong { font-weight: bold; }

/* ========================
   TYPOGRAPHY SCALE
   ======================== */
h1, .h1 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 2.375rem; /* 38px */
  font-weight: 700;
  color: #17425D;
  margin-bottom: 18px;
  line-height: 1.15;
}

h2, .h2 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1.75rem; /* 28px */
  font-weight: 600;
  color: #17425D;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
  color: #17425D;
  margin-bottom: 12px;
  line-height: 1.22;
}

h4, .h4 {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, blockquote, ul, ol {
  font-size: 1rem;
}

blockquote {
  border-left: 4px solid #61B15A;
  padding-left: 18px;
  color: #233945;
  font-style: italic;
  margin: 0 0 12px 0;
}

/* ========================
   LAYOUT CONTAINERS
   ======================== */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(25,50,70,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F5F8FA;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(23,66,93,0.08);
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.28s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(23,66,93,0.14);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FAFC;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(23,66,93,0.05);
  margin-bottom: 20px;
  border: 1px solid #E3EAF3;
  flex-direction: column;
  color: #162536;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #203842;
  margin-bottom: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.alerts-box {
  background: #E3F2FD;
  color: #183040;
  border-radius: 8px;
  padding: 18px;
  margin-top: 12px;
  border-left: 4px solid #61B15A;
}
.ratings-widget {
  background: #F5F8FA;
  border-radius: 8px;
  padding: 15px 22px;
  margin-top: 18px;
  color: #123149;
  font-weight: 500;
  font-size: 1.08rem;
  box-shadow: 0 0px 6px 0 rgba(23,66,93,0.05);
}

.cta {
  background: #17425D;
  color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 18px 0 rgba(23,66,93,0.13);
}
.cta .cta-btn {
  margin-top: 14px;
}
.cta h2, .cta h1 {
  color: #fff;
}
.cta .text-section p, .cta .text-section a {
  color: #f5f5f5;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: #fff;
  border-bottom: 1px solid #E5EAF0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  box-shadow: 0 2px 12px 0 rgba(23,66,93,0.045);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img[src$="logo.svg"] {
  width: 184px;
  height: auto;
  margin-right: 26px;
}
nav {
  display: flex;
  gap: 18px;
}
nav a {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1E3D50;
  padding: 6px 12px;
  border-radius: 4px;
  position: relative;
  transition: background 0.20s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #17425D;
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-weight: 600;
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  background: #61B15A;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 8px 0 rgba(97,177,90,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.14s;
  cursor: pointer;
  display: inline-block;
  outline: none;
  text-align: center;
  margin-left: 20px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #458D42;
  box-shadow: 0 4px 18px 0 rgba(97,177,90,0.18);
  transform: translateY(-2px) scale(1.035);
}

/* ========================
   MOBILE NAVIGATION
   ======================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #17425D;
  font-size: 2.05rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 1051;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e8eef1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1101;
  box-shadow: -4px 0 30px 0 rgba(23,66,93,0.14);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #17425D;
  font-size: 2.2rem;
  margin: 26px 16px 6px 0;
  cursor: pointer;
  border-radius: 3.5px;
  padding: 0 5px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e8eef1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 32px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  font-size: 1.13rem;
  color: #17425D;
  padding: 10px 0;
  border-bottom: 1px solid #E5EAF0;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F3F8FB;
  color: #61B15A;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  nav {
    gap: 10px;
  }
  .cta-btn {
    margin-left: 10px;
  }
}
@media (max-width: 880px) {
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: linear-gradient(85deg, #E7F0F4 0%, #F4F8FA 100%);
  padding: 64px 0 50px 0;
  margin-bottom: 44px;
  border-bottom: 1.5px solid #E3EBF2;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 700px;
}
.hero h1 {
  color: #17425D;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.20rem;
  color: #233945;
  margin-bottom: 14px;
}

/* ========================
   TEXT & FEATURE SECTIONS
   ======================== */
.text-section {
  margin-top: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section p, .text-section ul, .text-section ol {
  margin-bottom: 4px;
}
.text-section img {
  width: 22px;
  margin-right: 12px;
  vertical-align: middle;
}
.feature-item img {
  width: 28px;
  margin-right: 8px;
}

/* ========================
   BUTTONS & INTERACTIVE
   ======================== */
button, .cta-btn {
  cursor: pointer;
  outline: 0;
}
button:disabled, .cta-btn:disabled {
  background: #E5EAF0;
  color: #B1ADC2;
  cursor: not-allowed;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #F5F8FA;
  color: #273944;
  border-top: 1.5px solid #E5EAF0;
  padding-top: 36px;
  padding-bottom: 16px;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-menu a {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  color: #17425D;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 4px;
  transition: background 0.19s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #17425D;
  color: #fff;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.99rem;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-info img {
  width: 19px !important;
  height: auto;
  margin-right: 5px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  filter: grayscale(0.13);
  transition: filter 0.19s;
  background: #F9FAFB;
}
.social-icons img:hover {
  filter: saturate(1.16) drop-shadow(0 1px 6px #61B15A22);
}
footer p {
  font-size: 0.97rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #17425D;
  color: #fff;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  box-shadow: 0 -2px 16px 0 rgba(23,66,93,0.18);
  font-size: 1rem;
  animation: banner-slidein 0.5s 0.0s cubic-bezier(0.48,0.31,0.38,0.95);
}
@keyframes banner-slidein {
  from{ transform: translateY(110%); opacity:0 } to{ transform: translateY(0%);opacity:1 }
}
.cookie-banner .cookie-banner-content {
  flex: 1 1 55%;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Verdana, Arial, sans-serif;
  border: none;
  border-radius: 7px;
  font-size: 0.97rem;
  padding: 9px 22px;
  font-weight: 600;
  margin-left: 2px;
  transition: background 0.2s, color 0.20s, box-shadow 0.19s;
}
.cookie-accept {
  background: #61B15A;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #458D42;
}
.cookie-reject {
  background: #E33C3C;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #B71C1C;
}
.cookie-settings {
  background: #fff;
  color: #17425D;
  border: 1px solid #D3D8DE;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #f5f8fb;
  color: #123149;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,50,70,0.27);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #17425D;
  border-radius: 17px;
  min-width: 340px;
  max-width: 97vw;
  padding: 36px 28px 32px 28px;
  box-shadow: 0 2px 30px 0 rgba(23,66,93,0.18);
  position: relative;
  animation: modal-fadein 0.33s;
}
@keyframes modal-fadein { from{opacity:0; transform: translateY(40px);} to{opacity:1; transform:translateY(0);} }
.cookie-modal h2 {
  font-size: 1.33rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
}
.cookie-modal-toggle {
  width: 38px;
  height: 21px;
  background: #e3eaf3;
  border-radius: 10.5px;
  border: 1.5px solid #b9cadc;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-toggle-inner {
  position: absolute;
  top: 2px; left: 2px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(37,61,85,.08);
  transition: left 0.22s, background 0.20s;
}
input[type="checkbox"].cookie-toggle:checked + .cookie-modal-toggle {
  background: #61B15A;
  border-color: #61B15A;
}
input[type="checkbox"].cookie-toggle:checked + .cookie-modal-toggle .cookie-modal-toggle-inner {
  left: 16px;
  background: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #17425D;
  font-size: 1.6rem;
  padding: 6px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #f5f7fa;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

/* ========================
   RESPONSIVE DESIGN
   ======================== */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 8px;
  }
  .section,
  .cta {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .footer-menu {
    gap: 7px;
    flex-wrap: wrap;
  }
  .content-wrapper {
    gap: 10px;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px 8px;
    gap: 11px;
    font-size: 0.97rem;
  }
  .hero {
    padding: 40px 0 20px 0;
    margin-bottom: 22px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .card {
    padding: 12px 8px;
    min-width: 156px;
  }
  .cta-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
    min-width: 0;
    text-align: center;
  }
  footer {
    padding-top: 20px;
    font-size: 0.98rem;
  }
  .social-icons img {
    width: 28px;
    height: 28px;
  }
  .contact-info {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.91rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.65rem;
  }
  .cta {
    font-size: 1.07rem;
  }
}

/* =============================
   UTILITY CLASSES & OVERRIDES
   ============================= */
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }
.mr-20 { margin-right: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }

/* Helper: Hide visually, accessible for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  border: 0; overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Animations: For cards and buttons */
.card,
.testimonial-card,
.cta-btn {
  transition: box-shadow 0.28s, transform 0.20s;
}

.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 24px 2px rgba(23,66,93,0.13);
  transform: translateY(-2px) scale(1.011);
}

.cta-btn:active {
  background: #3F6F48;
  transform: scale(0.98);
}

/* =============================
   ACCESSIBILITY FOCUS STYLES
   ============================= */
a:focus, button:focus, .cta-btn:focus, .cookie-banner button:focus {
  outline: 2px dotted #17425D;
  outline-offset: 2px;
  background: #E3F2FD;
  color: #17425D !important;
}

/* =============================
   CUSTOM ICON POSITIONING (if needed)
   ============================= */
li img, p img {
  vertical-align: middle;
  margin-right: 11px;
  margin-bottom: 3px;
}

/* =============================
   HIDE Show Mobile Nav on Desktop
   ============================= */
@media (min-width: 881px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Ensure adequate gap between cards */
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* Ensure no content overlapping */
* { box-sizing: border-box; }

/* END OF STYLESHEET */
