/* RESET & BASE --------------------- */
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; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f8fafc;
  color: #273e5c;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

ul, ol { list-style: none; }

button, input, select, textarea { font-family: inherit; font-size: inherit; }

:focus { outline: 2px solid #f3ad3c; outline-offset: 2px; }

/* TYPOGRAPHY HIERARCHY --------------------- */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #273e5c;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #273e5c;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #273e5c;
}

p, li, ul, span {
  font-size: 1rem;
  color: #273e5c;
}
strong { font-weight: 700; color: #273e5c; }

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* CONTAINER AND SPACING ------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
}

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

/* GRADIENT MODERN BACKGROUNDS ------------- */
body {
  background: linear-gradient(110deg, #ececec 30%, #f8fafc 100%);
}
.hero {
  background: linear-gradient(94deg, #93a7c3 7%, #ececec 100%);
  padding: 68px 0 56px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 24px 0 rgba(39,62,92,0.07);
}

/* HEADER NAVIGATION ----------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(39,62,92,0.06);
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  justify-content: space-between;
}
.logo img {
  height: 40px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #273e5c;
  padding: 9px 14px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a.active {
  background: #f3ad3c;
  color: #273e5c;
}
.cta.primary {
  background: linear-gradient(93deg, #ffd391 0%, #f3ad3c 95%);
  color: #273e5c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 9px 26px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 4px 18px -8px #f3ad3c77;
  margin-left: 16px;
  transition: background .22s, transform .17s, box-shadow .17s;
  cursor: pointer;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(93deg, #f3ad3c 0%, #ffd391 95%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px -10px #f3ad3cdd;
}
.cta {
  background: #273e5c;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-block;
  margin-top: 12px;
  box-shadow: 0 2px 8px 0 #273e5c1a;
  transition: background 0.2s, color 0.2s, transform 0.16s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #f3ad3c;
  color: #273e5c;
  transform: scale(1.03);
}

/* MOBILE MENU ----------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #273e5c;
  cursor: pointer;
  z-index: 120;
  margin-left: auto;
  transition: color .18s;
}
.mobile-menu-toggle:hover {
  color: #f3ad3c;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: linear-gradient(98deg,#ececec 70%, #ccd6e3 100%);
  z-index: 200;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #273e5c;
  cursor: pointer;
  margin: 32px 24px 12px 0;
  align-self: flex-end;
  transition: color .18s;
}
.mobile-menu-close:hover {
  color: #f3ad3c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #273e5c;
  font-weight: 600;
  width: 100%;
  padding: 18px 0;
  text-align: center;
  border-radius: 0 0 24px 24px;
  background: #fff;
  margin: 0 0;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover {
  background: #f3ad3c;
  color: #273e5c;
}
@media (max-width: 1024px) {
  header .container nav, header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MAIN LAYOUT FLEXBOX PATTERNS ------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 #273e5c11;
  padding: 16px 24px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 5px 22px 0 #273e5c22;
  transform: translateY(-4px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.feature-grid, .guide-list, .testimonial-carousel, .testimonial-grid, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid > div, .guide-list > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 #273e5c13;
  padding: 24px 20px 20px 20px;
  min-width: 230px;
  max-width: 310px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-grid > div:hover, .guide-list > div:hover {
  box-shadow: 0 4px 32px 0 #273e5c19;
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 768px) {
  .feature-grid, .guide-list, .testimonial-carousel, .testimonial-grid, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .guide-list > div {
    min-width: unset;
    max-width: 100%;
  }
}

/* SERVICE, PRICE & CONTACT LISTS ----------- */
.service-list, .service-detailed-list, .price-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.service-detailed-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px 0 #273e5c0e;
  padding: 14px 16px 14px 12px;
}
.service-detailed-list li img {
  height: 44px;
  width: 44px;
  margin-right: 5px;
}
.service-detailed-list strong {
  min-width: 150px;
}
.service-detailed-list span {
  display: inline-block;
  background: #ffd391;
  color: #273e5c;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  padding: 1px 11px;
  margin-right: 8px;
  margin-left: 6px;
}
.price-list li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}
.price-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.contact-snippet, .contact-details {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 #273e5c0a;
  padding: 16px 22px;
  margin-top: 18px;
}
.contact-snippet ul, .contact-details p, .contact-details ul {
  font-size: 1rem;
  color: #273e5c;
}
.map-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}
.quick-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.quick-links a {
  color: #273e5c;
  background: #ffd391;
  border-radius: 10px;
  padding: 2px 10px;
  font-weight: 600;
  font-size: 0.96rem;
  transition: background 0.17s;
}
.quick-links a:hover {
  background: #f3ad3c;
  color: #fff;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  margin-bottom: 7px;
}
.category-filters span {
  background: #f3ad3c;
  color: #273e5c;
  font-size: 0.93rem;
  border-radius: 7px;
  padding: 2px 11px;
  font-weight: 600;
}

/* TESTIMONIALS ---------------------------- */
.testimonial-carousel, .testimonial-list, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 34px 0 #273e5c0e;
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px 0 #f3ad3c30;
  transform: scale(1.015);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #273e5c;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: #757e87;
  font-size: 0.99rem;
}
.stars { color: #f3ad3c; font-size: 1.2rem; letter-spacing: 1.5px; }

@media (max-width: 770px) {
  .testimonial-carousel, .testimonial-list, .testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 100%;
  }
}

/* FOOTER ---------------------------------- */
footer {
  background: #273e5c;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 60px;
  border-radius: 49px 49px 0 0;
  box-shadow: 0 -2px 20px 0 #273e5c19;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  padding: 6px 10px;
  border-radius: 12px;
  transition: background .15s, color .18s;
}
.footer-menu a:hover {
  background: #f3ad3c;
  color: #273e5c;
}
.brand-tagline {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 600;
  background: #fff;
  color: #273e5c;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 22px 0 #273e5c12;
  padding: 13px 24px;
  margin-bottom: 0;
}
.brand-tagline img {
  height: 26px;
}

@media (max-width: 800px) {
  .footer-menu { flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 600px) {
  .brand-tagline { flex-direction: column; gap: 7px; text-align: center; }
}

/* ANIMATIONS & MICRO-INTERACTIONS --------- */
@keyframes fadeInBottom {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: none; }
}
.hero .content-wrapper, .section .content-wrapper {
  animation: fadeInBottom .8s cubic-bezier(.33,.68,0,1.01) both;
}

/* COOKIE CONSENT BANNER & MODAL ----------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 16px 0 #273e5c2e;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding: 22px 16px;
  width: 100vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInBottom .45s cubic-bezier(.33,.68,0,1.01);
}
.cookie-banner__text {
  color: #273e5c;
  max-width: 500px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 18px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 #273e5c1b;
}
.cookie-btn.accept {
  background: #273e5c;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:hover {
  background: #1d2f46;
  color: #ffd391;
}
.cookie-btn.reject {
  background: #ececec;
  color: #273e5c;
  font-weight: 600;
}
.cookie-btn.reject:hover {
  background: #f3ad3c;
  color: #273e5c;
}
.cookie-btn.settings {
  background: #ffd391;
  color: #273e5c;
  font-weight: 500;
}
.cookie-btn.settings:hover {
  background: #f3ad3c;
  color: #273e5c;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 16px 7px;
  }
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,62,92,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s cubic-bezier(.42,0,.58,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 9px 44px 0 #273e5c49;
  min-width: 299px;
  max-width: 470px;
  width: 94vw;
  padding: 38px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInBottom 0.45s cubic-bezier(.35,.9,0,1.01);
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__header h2 {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273e5c;
  font-weight: 700;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #273e5c;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal__close:hover {
  color: #f3ad3c;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #273e5c;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  accent-color: #f3ad3c;
  width: 18px;
  height: 18px;
}
.cookie-category input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal__actions {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 8px;
}

/* GRADIENT MODERN BUTTONS, SHADOWS --------- */
button, .cta, .cta.primary {
  box-shadow: 0 4px 14px 0 #273e5c1a;
  transition: box-shadow .18s, background .17s, color .15s, transform .12s;
}
button:active, .cta:active, .cta.primary:active {
  box-shadow: 0 2px 5px 0 #273e5c19;
  transform: scale(0.97);
}

/* RESPONSIVE LAYOUT ------------------------ */
@media (max-width: 1024px) {
  .container, .content-wrapper {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-tagline { padding: 6px 8px; font-size: 1rem; }
}
@media (max-width: 600px) {
  .hero, .section { padding: 32px 5px; margin-bottom: 38px; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 410px) {
  .brand-tagline { font-size: 0.92rem; padding: 5px 3px; }
}

/* VISUAL ELEMENTS -------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 13px 0 #273e5c10;
}
.hero .cta.primary {
  margin-top: 24px;
}
.section .cta, .section .cta.primary {
  margin-top: 20px;
}

/* MISC SMALLS ------------------------------ */
.pricing-notes {
  font-size: 0.98rem;
  color: #1d2f46;
  background: #ffd391;
  border-radius: 10px;
  padding: 8px 14px 7px 14px;
  margin-top: 21px;
  line-height: 1.7;
}

/* SCROLLBAR (Modern Look) ----------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(94deg, #ffd391 30%, #f3ad3c 100%);
  border-radius: 7px;
}

/* Hide scrollbar on mobile to save space */
@media (max-width:600px) {
  ::-webkit-scrollbar { width: 5px; }
}

/* ACCESSIBILITY --------------------------- */
a:focus-visible, .cta:focus-visible, .cta.primary:focus-visible {
  outline: 2px solid #f3ad3c;
  outline-offset: 2px;
}

/* END CSS */
