/* RESET & BASE TYPOGRAPHY ---------------------------- */
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,
main, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Arial', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FFF8F3;
  color: #34303b;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #005393;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c18500;
  outline: none;
}
button, .cta {
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, box-shadow 0.22s;
}
ul, ol {
  margin-left: 1.3em;
}
strong {
  font-weight: bold;
}

/* FONT FAMILIES */
h1, h2, h3, .cta, .btn, .primary, .secondary, nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* TYPOGRAPHY SCALE */
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 6px; }
p, ul, ol, li { font-size: 1rem; }


/* CONTAINER & LAYOUT -------------------------- */
.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(255, 197, 21, 0.08);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 3px 14px 0 rgba(245,197,21,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 300px;
  min-width: 280px;
}
.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: center;
  background: #FFF8F3;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,83,147,0.07);
  min-width: 285px;
  max-width: 340px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Main Flexbox Feature Grids (Index, Services, etc.) */
.feature-grid, .services-list, .values-list, .team-values, .faq-snippet, .accordion-faq-list, .support-options, .service-categories-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li, .values-list li, .feature-list li, .team-values li, .faq-snippet li, .support-options ul li, .service-categories-grid > div {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 1.5px 9px 0 rgba(245,197,21, .08);
  flex: 1 1 240px;
  min-width: 210px;
  padding: 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.services-list span {
  font-weight: normal;
}
/* CARD EXCEPTIONS */
.service-highlights {
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px 0 rgba(245,197,21,.06);
  margin-top: 10px;
  gap: 16px;
}
.timeline-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 18px 0;
}


/* HEADER & NAVIGATION --------------------------- */
header {
  background: #fff;
  border-bottom: 2px solid #fae094;
  box-shadow: 0 2px 16px 0 rgba(245,197,21,0.04);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  color: #005393;
  font-size: 1.08rem;
  padding: 7px 18px;
  border-radius: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5C515;
  color: #fff;
}
.cta.primary, .btn.primary {
  background: #F5C515;
  color: #005393;
  font-weight: bold;
  border-radius: 24px;
  padding: 0.65em 2em;
  font-size: 1.08rem;
  margin-left: 15px;
  box-shadow: 0 4px 12px rgba(245,197,21,0.15);
}
.cta.primary:hover, .btn.primary:hover, .cta.primary:focus, .btn.primary:focus {
  background: #ffc801;
  color: #004074;
  box-shadow: 0 8px 22px rgba(245,197,21,0.21);
}
.cta.secondary, .btn.secondary {
  background: #005393;
  color: #fff;
  padding: 0.62em 1.4em;
  font-size: 1rem;
  border-radius: 24px;
  margin-left: 10px;
  box-shadow: 0 1px 6px rgba(0,83,147,0.10);
  font-weight: 600;
}
.cta.secondary:hover, .btn.secondary:hover, .cta.secondary:focus, .btn.secondary:focus {
  background: #003a70;
  color: #fffde5;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #005393;
  font-size: 2rem;
  padding: 6px 13px;
  border-radius: 12px;
  margin-left: 16px;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fae094;
  color: #333;
}

/* MOBILE MENU ---------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdfa;
  box-shadow: 0 12px 24px 0 rgba(0,83,147,0.07);
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.87,-0.11,.18,1.2);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 28px;
  font-size: 2.3rem;
  color: #005393;
  background: none;
  border-radius: 10px;
  transition: background 0.15s;
  padding: 8px 16px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fae094;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.06rem;
  color: #005393;
  padding: 9px 0;
  font-weight: 700;
  border-radius: 10px;
  display: block;
  width: 100%;
  transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fae094;
  color: #003a70;
}

/* HERO SECTION ---------------------- */
.hero {
  background: linear-gradient(135deg, #FFFAEF 79%, #F5C515 181%);
  padding-top: 54px;
  padding-bottom: 40px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 16px 42px rgba(245,197,21,0.10);
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #005393;
  font-size: 2.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  color: #34303b;
  margin-bottom: 22px;
  margin-top: 0;
}

/* USP & TRUST BARS (Index) --------------------- */
.usp-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fffdfa;
  border-radius: 24px;
  padding: 20px 26px;
  box-shadow: 0 2px 16px rgba(245,197,21,0.08);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}
.quality-seals {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fffdfa;
  border-radius: 16px;
  padding: 13px 22px;
  font-size: 1rem;
  font-weight: 600;
}

/* CTA BAR ------------------------ */
.cta-quick, .cta-service, .cta-contact, .cta {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 0.5px 8px 0 rgba(245,197,21,0.05);
  margin-bottom: 32px;
  padding: 32px 0;
}
.cta-quick h2, .cta-service h2, .cta-contact h2 {
  color: #005393;
}
.cta-quick p, .cta-service p, .cta-contact p {
  font-size: 1.08rem;
  margin-top: 18px;
}

/* TESTIMONIALS (Slider/Stacked) ------------------ */
.testimonials {
  background: #fffdfa;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(0,83,147,0.08);
  padding: 40px 0 36px 0;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: flex-start;
}
.testimonial-card .star-rating {
  color: #F5C515;
  font-size: 2rem;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card p {
  color: #34303b;
  font-size: 1.08rem;
  margin-bottom: 2px;
  font-weight: 500;
}
.testimonial-card span {
  color: #7C6A40;
  font-size: 0.97rem;
  align-self: flex-end;
}

/* PRICING TABLE ------------------ */
.price-table {
  width: 100%;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 3px 18px rgba(245,197,21,0.08);
  background: #fffdfa;
}
.price-table thead {
  background: #fbe9ba;
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
}
.price-table th {
  font-weight: 800;
  color: #005393;
}
.price-table tbody tr {
  border-bottom: 1px solid #f6e4c7;
}
.price-table tbody td {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #404040;
}

.pricing-notes ul {
  list-style: disc inside;
  margin-top: 5px;
  margin-bottom: 8px;
  color: #705d20;
  font-size: 0.99rem;
}

/* ACCORDION FAQ (FAQ.html) --------- */
.accordion-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  padding: 18px 22px;
  background: #fffdfa;
  border-radius: 14px;
  box-shadow: 0 1.5px 9px 0 rgba(245,197,21, .10);
  margin-bottom: 10px;
}
.faq-item h2 {
  font-size: 1.1rem;
  color: #005393;
  font-weight: bold;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 1rem;
  color: #593700;
}

.faq-snippet li {
  font-size: 1.02rem;
  color: #3c3253;
}

/* CONTACT PAGE STYLES --------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.06rem;
  background: #fffdfa;
  padding: 16px 21px;
  border-radius: 16px;
}
.contact-details img {
  vertical-align: middle;
  width: 1em;
  margin-right: 8px;
}
.map-embed {
  margin-bottom: 26px;
}

/* FOOTER ---------------------- */
footer {
  background: #FFF8F3;
  border-top: 2px solid #fae094;
  padding: 0 0 18px 0;
}
.footer-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 28px 0 10px 0;
  gap: 18px;
}
.footer-top img {
  height: 46px;
  border-radius: 12px;
  margin-right: 14px;
}
.footer-top nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-top nav a {
  color: #005393;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 11px;
  padding: 6px 8px;
  transition: background 0.12s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  background: #e8dcb0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.94rem;
  padding-top: 9px;
}
.footer-bottom p {
  color: #5a4d32;
}
.social {
  display: flex;
  gap: 14px;
}
.social a img {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  background: #fffdfa;
  transition: box-shadow .15s;
  box-shadow: 0 1px 7px rgba(245,197,21,.06);
}
.social a:hover img, .social a:focus img {
  box-shadow: 0 4px 18px 0 #ffdc5a44;
}


/* COOKIE CONSENT BANNER & MODAL --------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  color: #005393;
  box-shadow: 0 -6px 32px 0 rgba(245,197,21,0.14);
  padding: 22px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 5000;
  animation: fadeInUp 0.5s;
}
@keyframes fadeInUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner .btn, .cookie-banner .cta {
  padding: 0.62em 1.5em;
  border-radius: 20px;
  min-width: 140px;
  font-size: 1rem;
}
.cookie-banner .btn.accept {
  background: #F5C515;
  color: #005393;
  font-weight: bold;
}
.cookie-banner .btn.accept:hover, .cookie-banner .btn.accept:focus {
  background: #ffd41f; color: #003a70;
}
.cookie-banner .btn.reject {
  background: #fff;
  border: 1.3px solid #F5C515;
  color: #b98810;
}
.cookie-banner .btn.reject:hover, .cookie-banner .btn.reject:focus {
  background: #fae094;
}
.cookie-banner .btn.settings {
  background: #005393;
  color: #fff;
}
.cookie-banner .btn.settings:hover, .cookie-banner .btn.settings:focus {
  background: #003a70;
  color: #fffde5;
}

.cookie-modal-mask {
  display: none;
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(53, 39, 9, 0.26);
  justify-content: center;
  align-items: center;
  transition: opacity 0.23s;
  pointer-events: none;
}
.cookie-modal-mask.open {
  display: flex;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffdfa;
  color: #005393;
  border-radius: 26px;
  max-width: 450px;
  width: 88vw;
  padding: 38px 24px 30px 24px;
  box-shadow: 0 12px 42px 0 rgba(245,197,21,0.19);
  animation: modalIn 0.38s;
}
@keyframes modalIn {
  0% { transform: scale(0.95) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #005393;
  font-size: 1.13rem;
  margin-bottom: 13px;
}
.cookie-modal form {
  margin: 0 0 18px 0;
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1.01rem;
  color: #6b4f11;
}
.cookie-modal .info {
  font-size: 0.97rem;
  margin-top: 12px;
}
.cookie-modal .cookie-close {
  background: #fff;
  color: #005393;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  border-radius: 10px;
  padding: 3px 14px;
  border: none;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: #fae094;
}

/* LEGAL SECTIONS ----------- */
.legal {
  background: #fffdfa;
  border-radius: 20px;
  box-shadow: 0 1.5px 9px 0 rgba(245,197,21, .08);
  padding: 38px 20px 32px 20px;
  margin-bottom: 50px;
}
.legal h1, .legal h2 {
  color: #005393;
}
.legal ul {
  margin: 10px 0 16px 16px;
  color: #3c3253;
}

/* THANK YOU PAGE ----------- */
.thank-you {
  background: #fffdfa;
  border-radius: 20px;
  padding: 46px 18px 40px 18px;
  box-shadow: 0 2px 8px rgba(245,197,21,0.12);
  margin-bottom: 60px;
  text-align: center;
}
.thank-you h1 {
  color: #F5C515;
  font-size: 2rem;
}
.thank-you p {
  color: #005393;
  font-size: 1.1rem;
}

/* UTILITIES & MICRO-INTERACTIONS ------------------------- */
@media (pointer: fine) {
  .cta, .btn, .main-nav a, .mobile-nav a, .cookie-banner .btn, .footer-top nav a {
    transition: background 0.18s, color 0.14s, box-shadow 0.18s, transform 0.2s;
  }
  .cta:hover, .btn:hover, .main-nav a:hover, .mobile-nav a:hover,
  .footer-top nav a:hover {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 5.5px 20px rgba(245,197,21,0.08);
  }
}

/* FORM ELEMENTS & CONTROLS (for future forms) */
input, select, textarea {
  padding: 0.7em 1em;
  border: 1.2px solid #fae094;
  border-radius: 17px;
  font-size: 1rem;
  margin-bottom: 10px;
  background: #fffdfa;
  box-shadow: 0 1px 6px 0 rgba(245,197,21,.05);
  transition: border 0.16s;
}
input:focus, select:focus, textarea:focus {
  border: 1.6px solid #F5C515;
  outline: none;
  background: #fffce9;
}

/* RESPONSIVENESS ---------------------------- */
@media (max-width: 1080px) {
  .container {
    max-width: 940px;
  }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-top nav { gap: 12px; }
}
@media (max-width: 900px) {
  .container { max-width: 94vw; }
  .main-nav { gap: 14px; }
  .feature-grid li, .values-list li, .feature-list li, .team-values li, .faq-snippet li, .service-categories-grid > div {
    flex: 1 1 48%;
    min-width: 220px;
  }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section, .hero, .testimonials, .legal, .thank-you, .cta-quick, .cta-service, .cta-contact {
    padding: 26px 5vw;
    margin-bottom: 38px;
    border-radius: 14px;
  }
  .feature-grid, .service-categories-grid, .values-list, .feature-list {
    gap: 16px;
  }
  .feature-grid li, .values-list li, .feature-list li, .service-categories-grid > div {
    flex: 1 1 100%;
    min-width: 0;
    padding: 18px 14px;
  }
  .testimonial-slider {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .hero, .section, .cta-quick, .cta-service, .cta-contact, .legal, .thank-you {
    padding: 13px 2vw;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .feature-grid, .service-categories-grid, .values-list, .feature-list {
    gap: 8px;
  }
  .container { padding: 0 5px; }
  .usp-bar, .quality-seals {
    flex-direction: column;
    gap: 10px;
    padding: 13px 8px;
  }
  .cta.primary, .cta.secondary, .btn.primary, .btn.secondary {
    padding: 0.5em 1em;
    font-size: 0.97rem;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .testimonial-card {
    min-width: 94vw;
    max-width: 97vw;
    padding: 15px 7px;
    border-radius: 10px;
  }
  .footer-top img { height: 36px; }
  .price-table th, .price-table td { padding: 11px 6px; }
}

/* ACCESSIBILITY COLORS & FOCUS ------------------ */
a, .btn, .cta, button, input, select, textarea {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #F5C515;
  outline-offset: 2px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* END OF CSS */
