/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7FA;
  color: #25485A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
ol, ul {
  list-style: none;
}
a {
  color: #31667D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E8871E;
  outline: none;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* TYPOGRAPHY SCALE & HEADINGS */
h1 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #25485A;
}
h2 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #31667D;
}
h3 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #25485A;
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #25485A;
}
p, li {
  font-size: 1rem;
  color: #25485A;
  margin-bottom: 12px;
}
strong {
  font-weight: 600;
}

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* SECTIONS & SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(49,102,125,0.05);
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(49,102,125,0.07);
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(49,102,125,0.18);
  transform: translateY(-4px) scale(1.015);
  z-index: 2;
}
.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 28px;
  margin-bottom: 20px;
  background: #FFFFFF;
  color: #25485A;
  border-left: 5px solid #31667D;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(49,102,125,0.10);
  font-size: 1.02rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7FAFC;
  border-radius: 12px;
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  box-shadow: 0 1px 6px 0 rgba(49,102,125,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1px solid #D9E2E7;
}
.feature-item:hover {
  box-shadow: 0 6px 24px 0 rgba(49,102,125,0.16);
  border-color: #31667D;
  z-index: 2;
}

/* HERO CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 13px 36px;
  background: #31667D;
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 8px 0 rgba(49,102,125,0.09);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, transform 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #25485A;
  color: #FFF;
  box-shadow: 0 6px 22px 0 rgba(49,102,125,0.14);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

/* NAVIGATION */
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #FFFFFF;
  padding: 16px 24px;
  box-shadow: 0 2px 8px 0 rgba(49,102,125,0.07);
  position: relative;
  z-index: 20;
}
.logo-link img {
  height: 46px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav ul li a {
  color: #25485A;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #D9E2E7;
  color: #31667D;
  outline: none;
}
.header .cta-btn {
  margin-left: 24px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2.4rem;
  background: #31667D;
  color: #FFFFFF;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  z-index: 210;
  transition: background 0.2s, color 0.1s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #25485A;
  color: #FFFFFF;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #F5F7FA;
  box-shadow: 0 2px 40px 0 rgba(49,102,125,0.18);
  z-index: 220;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.37,0,0.63,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 18px 0 0;
  font-size: 2.1rem;
  color: #31667D;
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: #D9E2E7;
  color: #25485A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 9px;
  margin-top: 36px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25485A;
  padding: 17px 22px;
  border-radius: 8px;
  margin: 0 10px;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D9E2E7;
  color: #31667D;
  outline: none;
}
body.menu-open {
  overflow: hidden;
}

/* FOOTER */
footer {
  background: #31667D;
  color: #FFFFFF;
  padding: 36px 0 28px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #FFFFFF;
  opacity: 0.94;
  font-size: 1rem;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E8871E;
  opacity: 1;
}

/* SERVICE LISTS & PRICES */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-block {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(49,102,125,0.07);
  padding: 22px 22px 18px 22px;
  flex: 1 1 300px;
  min-width: 260px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.18s;
  border: 1px solid #D9E2E7;
}
.service-block h3 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 1.18rem;
  color: #25485A;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-block h3 span {
  font-size: 1rem;
  color: #31667D;
  background: #D9E2E7;
  border-radius: 6px;
  padding: 3px 10px;
  margin-left: 8px;
  font-weight: 400;
}
.price-info {
  font-size: 1.05rem;
  color: #31667D;
  font-weight: 500;
  margin-top: 14px;
}

/* ABOUT EXTRA */
.about-extra {
  background: #D9E2E7;
  border-radius: 10px;
  padding: 16px 20px;
  color: #25485A;
  font-size: 1.04rem;
}

/* TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F7FAFC;
  border-radius: 10px;
  padding: 20px 18px;
}

/* UL/LI LISTS */
ul {
  margin-left: 22px;
  margin-bottom: 16px;
}
ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/* HEADINGS IN CONTENT */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3 {
  margin-top: 0;
}

/* RESPONSIVE – MOBILE FIRST */
@media (max-width: 1150px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 900px) {
  .service-list,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 18px;
  }
  .main-nav {
    position: relative;
    padding-right: 60px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .content-wrapper, .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 28px 4px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .footer-brand img {
    width: 40px; height: 40px;
  }
}
@media (max-width: 575px) {
  .card, .feature-item, .service-block {
    min-width: 0;
    width: 100%;
    padding: 16px 9px;
  }
  .about-extra,
  .text-section {
    padding: 12px 7px;
  }
  .testimonial-card {
    padding: 14px 8px;
    font-size: 0.98rem;
  }
  .mobile-menu {
    padding-right: 0;
  }
}
@media (max-width: 430px) {
  .container {
    padding-left: 2px; padding-right: 2px;
  }
  footer {
    padding-left: 0; padding-right: 0;
  }
}

/* HOVER & MICRO-INTERACTIONS */
.feature-item:active, .service-block:active, .card:active {
  transform: scale(0.97);
  transition: transform 0.12s;
}

/* SHADOWS & RADIUS (MODERN LOOK) */
.card, .testimonial-card, .feature-item, .service-block {
  transition: box-shadow 0.18s, transform 0.15s;
}


/* =============== COOKIE CONSENT BANNER ================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #12405a;
  color: #FFFFFF;
  padding: 22px 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 3000;
  box-shadow: 0 -4px 24px rgba(37,72,90,0.13);
  gap: 22px;
  animation: cookiebanner-fadein 0.4s ease;
}
@keyframes cookiebanner-fadein {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__message {
  font-size: 1rem;
  flex: 3 1 240px;
  color: #FFF;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 26px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  background: #D9E2E7;
  color: #25485A;
  transition: background 0.16s, color 0.17s;
}
.cookie-btn.accept {
  background: #E8871E;
  color: #FFF;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #D37213;
}
.cookie-btn.reject {
  background: #D9E2E7;
  color: #25485A;
}
.cookie-btn.reject:hover{
  background: #31667D;
  color: #FFF;
}
.cookie-btn.settings {
  background: #31667D;
  color: #FFF;
}
.cookie-btn.settings:hover {
  background: #25485A;
  color: #FFF;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 335px;
  max-width: 98vw;
  max-height: 98vh;
  width: 415px;
  background: #FFFFFF;
  color: #25485A;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(49,102,125,0.18);
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  z-index: 3100;
  transition: opacity 0.27s, transform 0.28s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px 26px 26px 26px;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  font-size: 1.6rem;
  color: #31667D;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s;
}
.cookie-modal__close:hover {
  background: #D9E2E7;
}
/* Switch (toggle) for cookies */
.cookie-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D9E2E7;
  border-radius: 18px;
  transition: background .23s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #31667D;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #FFF;
  border-radius: 50%;
  transition: transform .22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-modal__essential {
  color: #25485A;
  font-size: 0.98rem;
  opacity: 0.69;
  font-style: italic;
}

/* =============== GLOBAL UTILITIES ================ */
.nowrap {
  white-space: nowrap;
}
.bg-accent {
  background: #E8871E !important;
  color: #FFF !important;
}
.bg-primary {
  background: #31667D !important;
  color: #FFF !important;
}
.bg-secondary {
  background: #D9E2E7 !important;
  color: #25485A !important;
}
.text-accent {
  color: #E8871E !important;
}
.text-primary {
  color: #31667D !important;
}
.text-secondary {
  color: #D9E2E7 !important;
}
.rounded {
  border-radius: 13px !important;
}
.shadow {
  box-shadow: 0 2px 12px 0 rgba(49,102,125,0.08) !important;
}

/* =============== FOCUS STATES ================ */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus { 
  outline: 2px solid #E8871E;
  outline-offset: 2px;
}

/* =============== OVERRIDE AUTOFILL FORMS ================ */
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #25485A;
}

/* =============== ANIMATION CLASSES =============== */
.fade-in {
  animation: fadeIn 0.37s ease;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============== PRINT (BUSINESS DOCS) =============== */
@media print {
  .main-nav, .mobile-menu, .footer-nav, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body, .container, .content-wrapper {
    background: #FFF !important;
    color: #000 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
