/* --- CSS RESET & BASE 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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  background-color: #F6F9FF;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #F6F9FF;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #0D3557;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem; /* 32px */
}
h3 {
  font-size: 1.375rem; /* 22px */
}
h4 {
  font-size: 1.125rem; /* 18px */
}
h5, h6 {
  font-size: 1rem;
}
p, li, blockquote, table, address {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #0d3557;
  background: #fff;
  border-left: 6px solid #F9A825;
  padding: 16px 20px;
  margin: 0 0 8px 0;
  font-size: 1.125rem;
}
a {
  color: #F9A825;
  text-decoration: none;
  transition: color 0.19s cubic-bezier(.46,.03,.52,.96);
}
a:hover, a:focus {
  color: #0D3557;
  outline: none;
}

/* Container & Spacing System */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 auto;
}

/* Flex Utility Patterns (mandatory) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(10,30,80,0.08);
  padding: 28px 28px 18px 28px;
  flex: 1 1 300px;
  transition: box-shadow 0.25s cubic-bezier(.46,.03,.52,.96), transform 0.23s cubic-bezier(.46,.03,.52,.96);
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px 0 rgba(13,53,87,0.15);
  transform: translateY(-6px) scale(1.015);
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive --- Mobile First */
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .section, section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}


/* --- HEADER & MAIN NAVIGATION --- */
header {
  background: #0D3557;
  color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  box-shadow: 0 0 30px 0 rgba(13,53,87,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 11px; padding-bottom: 11px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  margin-right: 2px;
  border-radius: 8px;
  transition: background 0.14s cubic-bezier(.46,.03,.52,.96), color 0.14s cubic-bezier(.46,.03,.52,.96);
  text-align: center;
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  background: #F9A825;
  color: #0D3557;
}
.cta-primary, .cta-primary:visited {
  background: #F9A825;
  color: #0D3557 !important;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  box-shadow: 0 2px 16px 0 rgba(249,168,37,0.09);
  text-shadow: 0 1px 0 #fff8;
  margin-left: 8px;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  transition: background 0.18s cubic-bezier(.46,.03,.52,.96), color 0.18s cubic-bezier(.46,.03,.52,.96), transform 0.18s cubic-bezier(.46,.03,.52,.96);
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #0D3557 !important;
  box-shadow: 0 4px 28px 0 rgba(249,168,37,0.21);
  transform: translateY(-2px) scale(1.055);
}
/* Secondary CTA */
.cta-secondary {
  background: #fff;
  color: #F9A825;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 8px;
  padding: 10px 22px;
  margin-top: 18px;
  border: 1.5px solid #F9A825;
  box-shadow: 0 1px 6px 0 rgba(249,168,37,0.07);
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F9A825;
  color: #0D3557;
  box-shadow: 0 3px 14px 0 rgba(13,53,87,0.12);
}

/* --- MOBILE MENU (BURGER NAVIGATION) --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F9A825;
  font-size: 2.2rem;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 90;
  transition: background 0.17s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #254875;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 380px;
  background: #0D3557;
  box-shadow: -2px 0 48px 0 rgba(13,53,87,0.21);
  transform: translateX(110%);
  transition: transform 0.33s cubic-bezier(.46,.03,.52,.96);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 0 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.13s;
  z-index: 1100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F9A825;
  color: #0D3557;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding: 0 25px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 16px 2px;
  border-radius: 6px;
  margin-bottom: 3px;
  transition: background 0.13s, color 0.13s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9A825;
  color: #0D3557;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- HERO & FEATURE SECTIONS (EXTRA ENERGETIC) --- */
.hero-section {
  background: #0D3557;
  color: #fff;
  border-radius: 0 0 48px 48px;
  min-height: 420px;
  box-shadow: 0 12px 44px 0 rgba(13,53,87,0.12);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  min-height: 300px;
}
.hero-section h1, .hero-section p {
  color: #fff;
}
.hero-section .cta-primary {
  margin-top: 30px;
  font-size: 1.17rem;
}
@media (max-width: 768px) {
  .hero-section {
    border-radius: 0 0 28px 28px;
    min-height: 240px;
    padding-top: 30px;
  }
  .hero-section .container {
    min-height: 200px;
  }
}

/* Feature Grids */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 28px 0 0 0;
}
.feature-grid > li,
.feature-grid > div {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  padding: 25px 16px 20px 16px;
  box-shadow: 0 2px 16px 0 rgba(13,53,87,0.06);
  transition: transform 0.23s cubic-bezier(.46,.03,.52,.96), box-shadow 0.23s cubic-bezier(.46,.03,.52,.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  border-bottom: 4px solid #F9A825;
  margin-bottom: 0;
  text-align: center;
}
.feature-grid > li:hover,
.feature-grid > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 36px 0 rgba(13,53,87,0.16);
}
.feature-grid img {
  width: 44px; height: 44px; margin-bottom: 6px;
}
.feature-grid h3 {
  color: #0D3557;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.feature-grid p {
  font-size: 1rem;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- TESTIMONIALS --- */
.testimonials-section, .customer-reviews-section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 22px 0 rgba(13,53,87,0.08);
  margin-bottom: 60px;
}
.testimonials-section .testimonial-card,
.customer-reviews-section .testimonial-card {
  background: #f9f7f5;
  color: #0d3557;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 2px 8px 0 rgba(13,53,87,0.05);
  padding: 25px 32px 20px 32px;
  flex-direction: column;
  /* .testimonial-card is flex by default */
  align-items: flex-start;
  min-width: 0;
}
.testimonial-card blockquote {
  color: #0D3557;
  background: none;
  border-left: 4px solid #F9A825;
  font-size: 1.07rem;
}
.testimonial-meta {
  margin-top: 12px;
  color: #F9A825;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- CARD / HIGHLIGHT ELEMENTS --- */
.usp-highlight {
  background: #F9A825;
  color: #0D3557;
  border-radius: 12px;
  padding: 20px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  margin-top: 30px;
  box-shadow: 0 2px 18px 0 rgba(249,168,37,0.08);
  text-align: center;
}

/* --- PRICING --- */
.pricing-section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(13,53,87,0.09);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 1px 5px 0 rgba(13,53,87,0.08);
  margin-bottom: 24px;
  font-size: 1.07rem;
}
.pricing-table thead th {
  background: #0D3557;
  color: #fff;
  text-align: left;
  padding: 13px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.pricing-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid #f4f4f4;
  background: #fff;
}
.pricing-section p strong {
  color: #0D3557;
}
.pricing-notes {
  color: #B65F00;
  font-size: 0.98rem;
  margin-top: 10px;
}

/* --- PROCESS --- */
.process-steps {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 0 0;
}
.process-steps li {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F9A8251A;
  border-radius: 14px;
  padding: 14px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  color: #0D3557;
}
.process-steps img {
  width: 36px; height: 36px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion > div {
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(13,53,87,0.04);
  background: #fff;
  margin-bottom: 18px;
  padding: 18px 18px 12px 18px;
}
.faq-accordion h3 {
  font-size: 1.07rem;
  margin-bottom: 6px;
  color: #F9A825;
}
.faq-accordion p {
  color: #0D3557;
}

/* --- CONTACT DETAIL STYLING --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.contact-details img {
  width: 24px; height: 24px;
}
.map-snippet p, .map-snippet img {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0D3557;
}
.business-hours h2 {
  color: #F9A825;
}

/* --- FOOTER --- */
footer {
  background: #0D3557;
  color: #fff;
  padding: 32px 0 16px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -3px 44px 0 rgba(13,53,87,0.08);
  font-size: 1rem;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F9A825;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  padding: 4px 8px;
  transition: background 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fff;
  color: #0D3557;
}
.brand-legal, .address-brief {
  text-align: center;
  margin-top: 4px;
  font-size: 0.96rem;
  color: #fff9;
}
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: center;
  }
}

/* --- Cookie Consent Banner (Fixed Bottom) --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 9998;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  background: #fff;
  color: #0D3557;
  border-top: 4px solid #F9A825;
  box-shadow: 0 -6px 24px 0 rgba(13,53,87,0.13);
  padding: 26px 10px 22px 10px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 250px;
  min-width: 200px;
  font-size: 1.03rem;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  background: #F9A825;
  color: #0D3557;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 18px;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 1px 8px 0 rgba(249,168,37,0.08);
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #0D3557;
  border: 2px solid #F9A825;
}
.cookie-btn.settings {
  background: #0D3557;
  color: #fff;
  border: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.03);
  background: #222;
  color: #F9A825;
  box-shadow: 0 3px 12px 0 rgba(13,53,87,0.14);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9A825;
  color: #0D3557;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F9A825;
  color: #0D3557;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 22px 4px 18px 4px;
  }
  .cookie-consent-banner .cookie-text {
    font-size: 0.96rem;
  }
}

/* --- Cookie Modal (Overlay) --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,53,87,0.17);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(.46,.03,.52,.96);
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #0D3557;
  border-radius: 16px;
  box-shadow: 0 12px 48px 0 rgba(13,53,87,0.23);
  width: 95vw;
  max-width: 430px;
  padding: 38px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #0D3557;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  margin-bottom: 13px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #F9A825;
  width: 22px; height: 22px;
  border-radius: 3px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #0D3557;
  font-size: 1.46rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 26px 10px 19px 10px;
    width: 98vw;
    max-width: 98vw;
  }
}

/* --- Animations & Microinteractions --- */
html {
  scroll-behavior: smooth;
}
*[tabindex="0"]:focus {
  outline: 2px solid #F9A825;
}
button, .cta-primary, .cta-secondary, .cookie-btn {
  transition: background 0.13s, color 0.13s, box-shadow 0.14s, transform 0.13s;
}

@media (hover: hover) {
  .card-container .card:hover, .feature-grid > li:hover,
  .feature-grid > div:hover {
    transform: translateY(-7px) scale(1.037);
    box-shadow: 0 9px 40px 0 rgba(249,168,37,0.17);
  }
}

/* --- Misc: Elements, List, ul/ol --- */
ul, ol {
  margin-left: 22px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
li {
  margin-bottom: 0;
}
ul li strong, ol li strong {
  font-weight: 700;
}

/* Specialized: Policy Pages, Confirmation etc */
.privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section, .confirmation-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 18px 0 rgba(13,53,87,0.08);
}
.privacy-policy-section h1, .gdpr-section h1, .cookie-policy-section h1, .terms-section h1, .confirmation-section h1 {
  color: #F9A825;
}
.privacy-policy-section h2, .gdpr-section h2, .cookie-policy-section h2, .terms-section h2, .confirmation-section h2 {
  color: #0D3557;
}

/* --- FORMS (if any in the future) --- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 9px;
  border: 1.5px solid #0D355787;
  border-radius: 7px;
  margin-bottom: 15px;
  background: #fff;
  color: #0D3557;
  outline: none;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: #F9A825;
}

/* --- SCROLLBARS FOR ENERGETIC STYLE --- */
::-webkit-scrollbar {
  width: 8px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #F9A825;
  border-radius: 8px;
}

/* --- Z-index Enforcement to prevent overlay issues --- */
header { z-index: 20; }
.mobile-menu { z-index: 1040; }
.cookie-consent-banner { z-index: 9998; }
.cookie-modal-overlay { z-index: 9999; }

/* --- MISC FIXES: Prevent Overlap --- */
.card, .testimonial-card, .feature-grid > li, .feature-grid > div {
  margin-bottom: 20px; /* Ensures 20px min spacing between cards */
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* END CSS */
