/* --- CSS RESET & BASIC SETUP --- */
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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, html {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #162044;
  line-height: 1.6;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #184696;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #FAD245;
}

/* --- FONT IMPORTS (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/*--- COLOR VARIABLES for fallback ---*/
:root {
  --primary: #184696;
  --secondary: #FAD245;
  --accent: #F5F5F5;
  --danger: #ff3e54;
  --success: #38cc77;
  --electric-blue: #2A5BFF;
  --electric-pink: #EC39A1;
  --text-dark: #161718;
  --text-light: #fff;
  --shadow: 0 4px 18px rgba(24,70,150,0.10), 0 1.5px 5px rgba(250,210,69,0.12);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
p, li, ul, ol {
  font-size: 1rem;
  color: var(--text-dark);
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.92em;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
  overflow: hidden;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(24,70,150,0.22), 0 2.5px 9px rgba(250,210,69,0.18);
  transform: translateY(-4px) scale(1.03);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--electric-blue);
  box-shadow: 0 3px 16px rgba(24,70,150,.10), 0 1.5px 5px rgba(44,73,150,0.07);
  border-radius: 15px;
  margin-bottom: 20px;
  max-width: 480px;
  transition: box-shadow .23s, border-color .23s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 22px rgba(24,70,150,0.13);
  border-left: 5px solid var(--secondary);
}
.testimonial-meta {
  color: #666;
  font-size: 0.98rem;
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 10px 0;
}

/* --- UTILITIES & DYNAMIC PATTERNS --- */
.gap-20 {
  gap: 20px!important;
}
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.pb-24 { padding-bottom: 24px; }
.pt-24 { padding-top: 24px; }

/* --- MAIN NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 1.5px 15px rgba(24,70,150,0.07);
  padding: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 14px;
  position: relative;
  transition: color .15s, background .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.main-nav .btn {
  margin-left: 10px;
  font-size: 1.02rem;
}

/* --- BUTTONS --- */
.btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 13px 32px;
  border: none;
  border-radius: 20px;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(232, 152, 0, .09);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .16s;
  outline: none;
  display: inline-block;
  min-width: 160px;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--accent)!important;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric-blue);
  color: var(--secondary);
  box-shadow: 0 2px 12px rgba(24,70,150,0.14);
  transform: translateY(-2px) scale(1.016);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--electric-pink);
  color: #fff;
  box-shadow: 0 2px 10px rgba(236,57,161,.11);
  transform: translateY(-2px) scale(1.016);
}
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover, .btn-danger:focus {
  background: #c71c3a;
}
.btn + .btn {
  margin-left: 16px;
}

/* --- HERO SECTIONS --- */
.hero {
  background: linear-gradient(90deg, #FAD245 0%, #fff 80%);
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  margin-bottom: 58px;
  padding: 64px 20px 80px 20px;
  display: flex;
  align-items: center;
  min-height: 400px;
  box-shadow: 0 6px 32px rgba(232, 210, 69, 0.08), 0 2px 7px rgba(24,70,150,0.08);
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-weight: 900;
  text-shadow: 0 2.5px 16px rgba(250,210,69,0.11);
}
.hero p {
  font-size: 1.21rem;
  color: #29436a;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --- FEATURE GRIDS / SERVICE LISTS --- */
.feature-grid, .service-list, .service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div, .service-list > div, .service-tabs > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2.5px 12px rgba(24,70,150,0.07);
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: transform .16s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  position: relative;
}
.feature-grid > div:hover, .service-list > div:hover, .service-tabs > div:hover {
  transform: scale(1.025) translateY(-2px);
  box-shadow: 0 6px 28px rgba(246,208,32,0.10);
}
.feature-grid img, .service-list img, .service-tabs img {
  width: 40px; height: 40px;
  margin-bottom: 16px;
}

.service_highlight_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.service_highlight_cards > div {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(24,70,150,0.07);
  padding: 22px 18px;
  flex: 1 1 210px;
  min-width: 180px;
  margin-bottom: 20px;
  transition: box-shadow .16s;
}
.service_highlight_cards > div:hover {
  box-shadow: 0 3px 16px rgba(236,57,161,0.11);
}

.benefit-descriptions {
  padding-top: 18px;
  font-size: 1.1rem;
}

/* --- ORDER STEPS / CHECKLIST / ACCORDION --- */
.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-left: 0;
  margin-bottom: 14px;
}
.step-list li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(24,70,150,0.06);
  padding: 24px 18px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform .14s, box-shadow .16s;
}
.step-list li:hover {
  transform: scale(1.022);
  box-shadow: 0 6px 22px rgba(24,70,150,0.10);
}
.step-list img {
  width: 36px;
  height: 36px;
}

.feature-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--primary);
  font-weight: 600;
  min-height: 30px;
}
.feature-checklist li:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--electric-blue);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(24,70,150,0.14);
  position: absolute;
  left: 0;
  top: 4px;
}

.faq-accordion > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 7px rgba(24,70,150,0.09);
  padding: 18px 16px 12px 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow .18s, background .22s;
}
.faq-accordion > div:hover {
  box-shadow: 0 3px 15px rgba(250,210,69,0.11);
  background: var(--accent);
}
.faq-accordion h3 {
  color: var(--electric-pink);
  margin-bottom: 6px;
}

.contact-support-cta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 64px 0 40px 0;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  box-shadow: 0 -8px 32px rgba(24,70,150,0.13);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-logo img {
  width: 56px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  opacity: 0.94;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 4px 2px;
  border-radius: 6px;
  transition: color .12s, background .14s;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--secondary);
  background: rgba(39, 172, 255, 0.08);
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.98rem;
}

/* --- CONTACT INFO (Contact Page) ---*/
.contact-info ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  font-size: 1.07rem;
}
.contact-info img {
  width: 26px;
  height: 26px;
}
.location-map, .business-hours {
  background: var(--accent);
  padding: 22px 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 7px rgba(24,70,150,0.08);
  flex: 1 1 200px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--electric-blue);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  padding: 7px 16px;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 2px 14px rgba(24,70,150,0.10);
  transition: background .16s, color .18s, transform .12s;
  z-index: 100;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--electric-pink);
  color: #fff;
  transform: scale(1.07) rotate(6deg);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(24,70,150, .98);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .38s cubic-bezier(.72,.15,.37,1.26), opacity .19s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2.4rem;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  cursor: pointer;
  transition: color .13s, transform .16s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  transform: scale(1.16) rotate(-4deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 55px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 16px;
  transition: background .13s, color .15s;
  min-width: 200px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 18px 20px;
  box-shadow: 0 -2px 12px rgba(24,70,150,0.16);
  z-index: 1200;
  font-size: 1.05rem;
  animation: cookiefadein .65s cubic-bezier(.72,.15,.37,1.16) 1;
}
@keyframes cookiefadein {
  from { opacity:0; transform: translateY(50px); }
  to   { opacity:1; transform: translateY(0); }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 14px;
  font-size: 1.08rem;
  padding: 9px 24px;
  margin-left: 10px;
  border: none;
  transition: background .13s, color .13s;
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--electric-blue);
  border: 1.3px solid var(--electric-blue);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--electric-pink);
  color: #fff;
  border-color: var(--electric-pink);
}
.cookie-banner .reject {
  background: var(--danger);
  color: #fff;
  border: none;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #c71c3a;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  background: rgba(24,70,150,0.88);
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein .52s cubic-bezier(.72,.15,.37,1.16) 1;
}
.cookie-modal {
  background: #fff;
  color: #162044;
  padding: 36px 30px 28px 30px;
  border-radius: 20px;
  min-width: 300px;
  max-width: 94vw;
  box-shadow: 0 4px 26px rgba(24,70,150,0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiefadein .57s cubic-bezier(.92,-0.02,.19,1.16) 1;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.cookie-category {
  background: var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--electric-blue);
  width: 20px; height: 20px;
}
.cookie-essential-label {
  font-size: 1.03rem;
  color: #888;
  font-style: italic;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  font-size: 1.05rem;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-modal .accept {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal .cancel {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--electric-pink);
  color: #fff;
}

/* --- CONFIRMATION/PAGE SUCCESS --- */
.confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
  padding: 64px 12px 70px 12px;
}
.confirmation h1 {
  color: var(--success);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.confirmation p {
  color: var(--primary);
  font-size: 1.1rem;
}

/* --- MISCELLANEOUS --- */
ul, ol {
  padding-left: 22px;
}
li + li {
  margin-top: 6px;
}
hr {
  border: none;
  height: 1px;
  background: var(--accent);
  margin: 18px 0;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1024px) {
  .hero {
    padding: 50px 10px 50px 10px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    min-height: 260px;
  }
  .footer-content {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .section {
    padding: 30px 10px;
  }
  .feature-grid, .service-list, .service-tabs, .service_highlight_cards {
    gap: 13px;
  }
  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.08rem; }
  .hero {
    min-height: 180px;
    padding: 34px 6px 40px 6px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    margin-bottom: 28px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-content {
    flex-direction: column;
  }
  .feature-grid, .service-list, .service-tabs, .service_highlight_cards {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 3vw;
  }
  .content-wrapper {
    gap: 14px;
  }
  .step-list {
    flex-direction: column;
    gap: 13px;
  }
  .step-list li {
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-logo {
    align-self: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 510px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero {
    min-height: 95px;
    padding: 14px 0 24px 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .footer-content, .content-wrapper {
    padding-left: 0; padding-right: 0;
  }
  .btn, .btn-primary, .btn-secondary {
    min-width: 80px;
    padding: 10px 10vw;
    font-size: 1rem;
  }
}

/* --- Z-INDEXING SAFETY --- */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 100;
}
footer {
  z-index: 1;
}

/* --- FOCUS RINGS & ACCESSIBILITY --- */
a:focus, button:focus, .btn:focus {
  outline: 2.2px dashed var(--electric-pink);
  outline-offset: 2px;
}

/* --- ENERGETIC MICRO-ANIMATIONS --- */
.btn, .main-nav a, .mobile-nav a {
  transition: background .17s, color .16s, box-shadow .18s, transform .15s;
}
.main-nav a, .footer-nav a, .footer-legal a {
  position: relative;
}
.main-nav a:after, .footer-nav a:after, .footer-legal a:after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0%;
  height: 2px;
  background: var(--secondary);
  transition: width .19s;
  border-radius: 3px;
}
.main-nav a:hover:after, .footer-nav a:hover:after, .footer-legal a:hover:after {
  width: 85%;
}

/* --- END --- */