/* CSS 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; height: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: linear-gradient(140deg, #FFFFFF 55%, #F6F8F9 100%);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #073B4C;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
  border: 0;
}
a {
  color: #FDA403;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #073B4C;
  text-decoration: underline;
}
ul, ol { list-style: none; }
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* TYPOGRAPHY SCALE */
h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: #073B4C;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
@media (min-width: 600px) { h1 { font-size: 2.75rem; } }
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #073B4C;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #073B4C;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
p, li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #222;
}
strong { font-weight: 700; color: #073B4C; }


/**********************************
 * CONTAINER + FLEXBOX STRUCTURE *
 *********************************/

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*************************
 * HEADER & NAVIGATION *
 *************************/
header {
  background: linear-gradient(90deg, #073B4C 90%, #FDA403 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(7,59,76,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  max-height: 46px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a.active {
  color: #073B4C;
  background: #FDA403;
  text-decoration: none;
}

.cta-btn {
  background: linear-gradient(90deg, #FDA403 80%, #073B4C 100%);
  color: #fff !important;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(253,164,3,0.14);
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.16s, transform 0.12s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #073B4C 50%, #FDA403 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 16px 0 rgba(7,59,76,0.14);
  text-decoration: none;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: #FDA403;
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(253,164,3,0.08);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #073B4C;
  color: #FDA403;
}

@media (min-width: 1080px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(7,59,76, 0.92);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.6,.02,.52,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 30px;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
  color: #FDA403;
  background: #fff;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  transition: background 0.14s;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FDA403;
  color: #073B4C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.22s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDA403;
  color: #073B4C;
}

@media (min-width: 1080px) {
  .main-nav { display: flex !important; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 1079px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu {
    display: flex;
  }
}

/******************************
 * HERO SECTION / HIGHLIGHTS *
 ******************************/
.hero {
  background: linear-gradient(110deg, #FDA403 3%, #fff 70%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 60px 0 50px 0;
}
.hero .container {
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 700px;
  align-items: flex-start;
}
.hero h1 {
  color: #073B4C;
  margin-bottom: 18px;
}
.hero p {
  color: #174c61;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  margin-bottom: 26px;
}

/**********************
 * FLEX SPACING RULES *
 **********************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(7,59,76,0.08);
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 30px 0 rgba(7,59,76,0.17);
  transform: translateY(-4px) scale(1.016);
}

.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;
  color: #222;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(7,59,76,0.07);
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 250px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 4px;
}
.testimonial-author {
  font-size: 1rem;
  color: #FDA403;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********************
 * FEATURES & LISTS  *
 *********************/
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(7,59,76,0.07);
  padding: 24px 22px 20px 22px;
  flex: 1 1 250px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list img, .steps-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

/*************************
 * SERVICE / PROCESS LIST *
 *************************/
.service-list,
.service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-list li, .service-detailed-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(7,59,76,0.07);
  padding: 22px 20px;
  flex: 1 1 240px;
  min-width: 200px;
}
.service-process {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.service-process li:not(:last-child) {
  border-left: 5px solid #FDA403;
  padding-left: 13px;
}

/***************
 * ACCORDION FAQ *
 ***************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(7,59,76,0.07);
  padding: 22px 20px;
  color: #073B4C;
  transition: box-shadow 0.22s;
}
.faq-item h2 {
  font-size: 1.18rem;
  color: #073B4C;
  margin-bottom: 10px;
}
.faq-item p {
  margin-bottom: 0;
  color: #222;
  font-size: 1rem;
}

/************************
 * STEPS & HOW-IT-WORKS  *
 ************************/
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.steps-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(7,59,76,0.07);
  padding: 26px 22px 16px 22px;
  flex: 1 1 220px;
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.steps-list strong {
  color: #FDA403;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}

/*********************
 * TESTIMONIAL STYLES*
 *********************/
.testimonials, .testimonials-gallery {
  background: linear-gradient(95deg, #f9fafc 60%, #FDA403 160%);
  padding: 48px 0 49px 0;
  margin-bottom: 54px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 0;
}
/* for extra testimonial padding */
.testimonial-card {
  margin-bottom: 20px;
}

/****************
 * CTA SECTIONS *
 ****************/
.cta-section, .faq-cta, .contact-cta {
  background: linear-gradient(90deg, #FDA403 75%, #073B4C 100%);
  border-radius: 22px;
  margin-bottom: 46px;
}
.cta-section .content-wrapper,
.faq-cta .content-wrapper,
.contact-cta .content-wrapper {
  align-items: flex-start;
}
.cta-section h2, .faq-cta h2, .contact-cta h2 {
  color: #fff;
}
.cta-section p, .faq-cta p, .contact-cta p {
  color: #fff;
  font-size: 1.14rem;
  margin-bottom: 22px;
}

/********************
 * CONTACT DETAILS  *
 ********************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-details img {
  width: 22px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-placeholder {
  border: 1.5px dashed #FDA403;
  color: #073B4C;
  font-style: italic;
  font-size: 1rem;
  border-radius: 10px;
  padding: 26px 15px;
  text-align: center;
  background: #fff;
}

/********************
 * FOOTER STYLES    *
 *********************/
footer {
  background: #073B4C;
  color: #fff;
  padding: 48px 0 9px 0;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 -2px 12px 0 rgba(7,59,76,0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  max-height: 52px;
}
.footer-brand p {
  color: #fff;
  font-size: 1.08rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #FDA403;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #FDA403;
  margin-right: 2px;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus { color: #fff; text-decoration: underline;}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-bottom: 5px;
  font-size: 0.98rem;
}
.footer-contact img { width: 16px; }
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  transition: filter 0.16s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(1.3) drop-shadow(0 0 6px #FDA40355);
}

/******************
 * RESPONSIVE CSS *
 *******************/
@media (max-width: 990px) {
  .hero .container { min-height: 310px; }
  .card-container, .feature-list, .testimonial-list, .steps-list, .service-list, .service-detailed-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section, .hero { padding: 28px 0 28px 0; margin-bottom: 40px; }
  .content-wrapper { gap: 18px; }
  .feature-list, .testimonial-list, .steps-list, .service-list, .service-detailed-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  header .container {
    padding-left: 10px; padding-right: 10px;
    height: 64px;
  }
  .hero { border-radius: 0 0 18px 18px; padding-top: 36px; padding-bottom: 36px; }
  .cta-btn { padding: 10px 18px; }
  .footer-brand, .footer-menu, .footer-contact, .footer-social {
    flex-direction: column !important;
    gap: 8px;
    align-items: flex-start !important;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.38rem; }
  .feature-list li, .service-list li, .testimonial-card, .faq-item, .steps-list li, .service-detailed-list li {
    padding: 18px 10px;
  }
  .cta-btn, .main-nav a, .mobile-nav a { font-size: 0.96rem; }
  .mobile-menu { padding-top: 16px; }
  .mobile-nav { margin-left: 12px; gap: 14px; }
}

/***************
 * ANIMATIONS  *
 **************/
.cta-btn, .main-nav a, .mobile-nav a, .footer-social a img, .card, .feature-list li, .testimonial-card, .faq-item {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.22s;
}

/**********************
 * COOKIE BANNER AREA *
 **********************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: linear-gradient(90deg, #073B4C 78%, #FDA403 100%);
  color: #fff;
  box-shadow: 0 -2px 20px 0 rgba(7,59,76,0.13);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.6s cubic-bezier(.65,0,.32,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.02rem;
  color: #fff;
  max-width: 540px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  background: #FDA403;
  color: #fff;
  border-radius: 22px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  margin-right: 0;
  transition: background 0.16s, color 0.12s, transform 0.11s;
}
.cookie-banner button:last-child {
  background: #fff;
  color: #073B4C;
  border: 1px solid #FDA403;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #073B4C;
  color: #FDA403;
  transform: scale(1.04);
}
.cookie-banner button:last-child:hover, .cookie-banner button:last-child:focus {
  background: #FDA403;
  color: #fff;
}

/*****************************
 * COOKIE PREFERENCES MODAL *
 *****************************/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(7,59,76,0.85);
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .22s cubic-bezier(.65,0,.32,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #073B4C;
  border-radius: 18px;
  padding: 32px 26px 26px 26px;
  max-width: 420px;
  box-shadow: 0 10px 48px 0 rgba(7,59,76,0.28);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: #FDA403;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'] {
  accent-color: #FDA403;
  width: 23px;
  height: 23px;
}
.cookie-category.essential label {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal button {
  background: #FDA403;
  color: #fff;
  border-radius: 22px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.15s, color 0.11s;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #073B4C;
  color: #FDA403;
}
.cookie-modal .modal-close {
  background: #fff;
  color: #FDA403;
  position: absolute;
  top: 10px; right: 10px;
  font-size: 1.7rem;
  border: none;
  border-radius: 50%;
  width: 37px; height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  z-index: 2;
  box-shadow: 0 2px 7px rgba(7,59,76,0.13);
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #FDA403;
  color: #fff;
}

/***************************
 * UTILITY & MISC STYLES   *
 ***************************/
::-webkit-input-placeholder { color: #8ca4b3; }
:-moz-placeholder { color: #8ca4b3; }
::-moz-placeholder { color: #8ca4b3; }
:-ms-input-placeholder { color: #8ca4b3; }
::placeholder { color: #8ca4b3; }

hr {
  border: none;
  border-top: 1.5px solid #FDA40322;
  margin: 32px 0;
}

/* Hide visually but keep accessible for icons-only labels, etc. */
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**************************************
 * VISUAL ENHANCEMENTS + MICROUX      *
 **************************************/
.card, .feature-list li, .testimonial-card, .faq-item, .steps-list li {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .feature-list li:hover, .testimonial-card:hover, .faq-item:hover, .steps-list li:hover {
  box-shadow: 0 6px 30px 0 rgba(7,59,76,0.14);
  transform: translateY(-3px) scale(1.02);
}

.cta-btn:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/***************
 * PRINT STYLE *
 **************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {display: none !important;}
  main, .container { width: 100% !important; max-width: 100% !important; padding: 0 !important;}
  body { background: #fff !important; color: #000 !important; }
}
