/* RESET & NORMALIZE */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #F8F8F8;
  color: #153157;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #FFBC42;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #E8910B;
  outline: none;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(21,49,87,0.07);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #153157;
  letter-spacing: -1.2px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.36rem;
}
h4 {
  font-size: 1.1rem;
}
p,
li,
span,
div,
.text-section {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #153157;
  font-size: 1rem;
  font-weight: 400;
}
.text-section {
  font-size: 1.1rem;
  color: #1e3055;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* HERO SECTION */
.hero {
  min-height: 330px;
  background: linear-gradient(100deg, #FFBC42 0%, #FF6B3F 100%);
  color: #153157;
  box-shadow: 0 8px 24px rgba(255,188,66,0.10);
  padding: 48px 0 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1, .hero h2 {
  color: #153157;
  text-shadow: 0 2px 10px rgba(255,255,255,0.16);
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #153157;
}
.hero .cta-btn {
  margin-top: 12px;
}

/* ---- HEADER ---- */
header {
  background: #153157;
  padding: 0;
  box-shadow: 0 2px 16px rgba(21,49,87,0.10);
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 76px;
  gap: 0;
}
header img {
  max-height: 44px;
  margin-right: 30px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav a {
  color: #F8F8F8;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color 0.16s;
  padding: 12px 8px 8px 8px;
  border-radius: 8px;
}
header nav a:hover, header nav a:focus {
  color: #FFBC42;
  background: rgba(255,188,66,0.09);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  color: #fff;
  background: #FF6B3F;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255,107,63,0.09);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.18s, transform 0.18s;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E65A2B;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 32px rgba(255,107,63,0.15);
  color: #fff;
  outline: none;
}

/* ---- FLEX PATTERNS ---- */
.features-grid, .services-list { 
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  justify-content: flex-start;
}
.feature, .service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(21,49,87,0.08);
  padding: 28px 24px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.feature img, .service img {
  width: 40px;
  height: 40px;
}
.feature:hover, .service:hover {
  box-shadow: 0 8px 32px rgba(255,107,63,0.12);
  transform: translateY(-3px) scale(1.03);
}

.services-list {
  gap: 24px;
}
.service {
  justify-content: flex-start;
  min-height: 180px;
}
.service h3 {
  color: #153157;
  margin-bottom: 4px;
}
.service ul {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #1e3055;
}
.service ul li {
  margin-bottom: 3px;
  position: relative;
  padding-left: 16px;
}
.service ul li:before {
  content: '\2022';
  color: #FFBC42;
  position: absolute;
  left: 0;
  top: 0;
}
.service a {
  color: #FF6B3F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 7px;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.15s;
}
.service a:hover { color: #153157; }

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(21,49,87,0.08);
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,107,63,0.12);
  transform: scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* BLOG STYLES */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 25px;
}
.blog-categories a {
  background: #FFBC42;
  color: #153157;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 22px;
  transition: background 0.16s, color 0.14s;
  margin-bottom: 6px;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #FF6B3F;
  color: #fff;
  outline: none;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
}
.blog-post-snippet {
  flex: 1 1 300px;
  min-width: 260px;
  background: #fff;
  border: 2px solid #FFBC42;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,188,66,0.08);
  padding: 24px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.14s, border-color 0.13s;
}
.blog-post-snippet:hover {
  box-shadow: 0 8px 40px rgba(255,107,63,0.10);
  border-color: #FF6B3F;
}
.featured-post {
  background: #153157;
  color: #fff;
  border-radius: 21px;
  padding: 32px 24px;
  margin-top: 30px;
  box-shadow: 0 6px 28px rgba(21,49,87,0.14);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.featured-post h3 {
  color: #FFBC42;
  margin-bottom: 8px;
}
.featured-post ul li {
  color: #fff;
  margin-bottom: 5px;
  list-style-type: disc;
  margin-left: 20px;
}
.featured-post a {
  color: #FFBC42;
  font-weight: bold;
  margin-top: 17px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFBC42;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255,188,66,0.18);
  margin-bottom: 20px;
  color: #153157;
  min-height: 112px;
}
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.testimonial-content p {
  color: #153157;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 3px;
}
.customer-name {
  font-size: 0.98rem;
  font-weight: bold;
  color: #153157;
}
.rating {
  color: #FF6B3F;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}

/* THANK YOU BLOCK */
.thankyou-block {
  background: #fff;
  border: 2px solid #FFBC42;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(255,188,66,0.12);
  padding: 35px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}
.thankyou-block h1 {
  color: #153157;
  margin-bottom: 7px;
}

/* FOOTER */
footer {
  background: #153157;
  color: #fff;
  padding: 34px 0 10px 0;
  border-top: 6px solid #FFBC42;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 0;
}
.footer-logo img {
  max-height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 12px 0;
}
.footer-nav a {
  color: #FFBC42;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: text-decoration 0.16s, color 0.15s;
}
.footer-nav a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
}

/* ---- MOBILE MENU ---- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1062;
  background: #FF6B3F;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  border: none;
  border-radius: 13px;
  box-shadow: 0 6px 24px rgba(255,107,63,0.13);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s, transform 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E65A2B;
  transform: scale(1.05);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #153157;
  z-index: 2000;
  padding: 36px 30px 30px 30px;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.7,.4,0,1.4);
  box-shadow: 0 0 28px 0 rgba(0,0,0,0.30);
  opacity: 0.98;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #FFBC42;
  color: #153157;
  font-size: 2.15rem;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  box-shadow: 0 3px 18px rgba(255,188,66,0.12);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FF6B3F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 65px;
  width: 100%;
}
.mobile-nav a {
  color: #FFBC42;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 13px 0 13px 16px;
  border-radius: 8px;
  transition: background 0.14s, color 0.13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,188,66,0.24);
  color: #fff;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 992px) {
  header nav, .container nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 11px 24px;
    font-size: 0.98rem;
  }
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
  .hero {
    padding: 32px 0 25px 0;
    min-height: 200px;
  }
  .hero .content-wrapper { gap: 16px; }
  .section {
    padding: 26px 6px;
    margin-bottom: 34px;
    border-radius: 13px;
  }
  .features-grid, .services-list, .blog-post-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service, .blog-post-snippet {
    min-width: 0;
    max-width: 100%;
    padding: 16px 10px;
    border-radius: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 11px;
    border-radius: 12px;
    min-height: unset;
  }
  .thankyou-block {
    padding: 18px 8px;
    border-radius: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .featured-post {
    padding: 20px 10px;
    border-radius: 13px;
  }
  footer .container {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 512px) {
  .hero h1 {
    font-size: 2rem;
  }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.02rem; }
  .mobile-nav a { font-size: 1.05rem; padding-left: 7px; }
}

/* List styles & spacing fixes */
ul.features-list, ul.feature-list, ul.requirements-list {
  padding-left: 16px;
  margin-top: 8px;
  color: #1e3055;
}
ul.features-list li, ul.feature-list li, ul.requirements-list li, ul li {
  list-style-type: disc;
  margin-bottom: 7px;
}
ol.steps-list {
  counter-reset: step;
  padding-left: 0;
}
ol.steps-list li {
  counter-increment: step;
  margin-bottom: 24px;
  background: #F8F8F8;
  border-radius: 13px;
  padding: 20px 13px 12px 54px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #153157;
}
ol.steps-list li strong { font-size: 1.03rem; }
ol.steps-list li:before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  background: #FF6B3F;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  border-radius: 50%;
  padding: 0.6em 0.94em;
  box-shadow: 0 2px 10px rgba(255,107,63,0.13);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ---- MICRO-ANIMATIONS ---- */
.cta-btn, .feature, .service, .testimonial-card, .card, .blog-post-snippet, .featured-post, .thankyou-block {
  transition: box-shadow 0.18s, transform 0.17s, background 0.14s, color 0.14s;
}
.cta-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  box-shadow: none;
  transform: scale(0.97);
}

/* CARD GENERAL */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ADDRESS & CONTACT DETAILS */
.contact-details, .office-hours, .contact-methods, .address-map {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 1.03rem;
}
.contact-details img, .office-hours img, .contact-methods img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}

/* MODAL/COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #fffdfa;
  border-top: 4px solid #FFBC42;
  box-shadow: 0 -4px 26px rgba(21,49,87,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 26px;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookie-slide-up 0.8s cubic-bezier(0.28,0.72,0.27,1.40);
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin-left: 11px;
  font-size: 1.01rem;
  background: #FF6B3F;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  box-shadow: 0 2px 10px rgba(255,107,63,0.11);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #FFBC42;
  color: #153157;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #FFBC42;
  color: #153157;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #153157;
  color: #FFBC42;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,49,87,0.44);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 8px 48px rgba(21,49,87,0.21);
  padding: 34px 26px 28px 26px;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: modal-pop-in 0.52s cubic-bezier(.84,-0.06,.22,1.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@keyframes modal-pop-in {
  0% { opacity: 0; transform: scale(0.90); }
  80% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); }
}
.cookie-modal h2 {
  color: #FF6B3F;
  font-size: 1.32rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: #153157;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #FFBC42;
}
.cookie-modal .cookie-category.essential label {
  color: #999;
  letter-spacing: 0.01em;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 17px;
}
.cookie-modal .cookie-modal-btns .cookie-btn {
  flex: 1 1 auto;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 17px;
  background: #FF6B3F;
  border: none;
  color: #fff;
  width: 39px;
  height: 39px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.64rem;
  text-align: center;
  transition: background 0.12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #FFBC42;
  color: #153157;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 10px;
    font-size: 0.94rem;
  }
  .cookie-banner .cookie-btn {
    margin-left: 0;
    margin-top: 9px;
    padding: 9px 16px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 18px 5px 16px 7px;
    border-radius: 15px;
    max-width: 96vw;
  }
}

/* Hide cookie banner or modal with .hide class */
.cookie-banner.hide, .cookie-modal-overlay.hide {
  display: none !important;
}

/* ---- UTILITY ---- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.hidden { display: none !important; }

/* ---- FOCUS STYLES ---- */
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-btn:focus {
  outline: 2px solid #FFBC42;
  outline-offset: 2px;
}

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