/* --- CSS 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;
}
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #181F2D;
  color: #F2F2F2;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #ED7B84;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F2F2F2;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p, ul, ol, table, .note {
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.125rem;
  color: #c6e0f6;
  margin-bottom: 24px;
}
.note {
  color: #AEE6FF;
  font-size: 0.96rem;
  background: rgba(38,84,124,0.12);
  padding: 8px 16px;
  border-radius: 8px;
}

/* --- BASE LAYOUT PATTERNS --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px;
  background: linear-gradient(130deg,#22314A 0%,#233140 60%,#1C2336 100%);
  box-shadow: 0 2px 24px 0 rgba(38,87,125,0.15), 0 0px 1px 0 #222842;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.text-section {
  align-items: flex-start !important;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #222C3F;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 #203755;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 26px 0 #16304b, 0 0 2px #ED7B84;
  transform: translateY(-4px) scale(1.01);
}

.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 20px 16px 20px;
  background: #F2F2F2;
  color: #181F2D;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(38,84,124,0.12);
  margin-bottom: 24px;
  width: 100%;
  max-width: 420px;
  border-left: 5px solid #ED7B84;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 2px #16304b30;
  border-color: #26547C;
}
.testimonial-card p {
  color: #222C3F;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #7c8797;
}

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

/* --- HEADER / NAVIGATION --- */
header {
  background: #181F2D;
  border-bottom: 1px solid #22314A;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
  box-shadow: 0 1px 10px 0 #13203980;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 0;
}
header a img {
  height: 50px;
  margin-right: 8px;
  vertical-align: middle;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 12px;
  color: #F2F2F2;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.1s, color 0.1s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #26547C;
  color: #FFF;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  background: #ED7B84;
  color: #F2F2F2 !important;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  box-shadow: 0 2px 8px 0 #c1455d37;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.22s;
  letter-spacing: 0.01em;
}
.btn-primary:hover, .btn-primary:focus {
  background: #c1455d;
  color: #fff;
  box-shadow: 0 4px 18px 0 #ed7b845c;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ED7B84;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s;
  cursor: pointer;
  z-index: 102;
  margin-left: 16px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #222C3F;
  color: #F2F2F2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1d222f;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.8,.2,.2,1);
  z-index: 999;
  
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  box-shadow: 0 12px 48px 0 #122644b3;
  display: none;
}
.mobile-menu.open {
  transform: translateX(0);
  display: flex;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 26px 0 0;
  background: none;
  border: none;
  color: #ED7B84;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #222C3F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 40px 36px 12px 36px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #F2F2F2;
  padding: 15px 6px;
  border-radius: 6px;
  margin-bottom: 4px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ED7B84;
  color: #fff;
}

/* --- HERO & CALL-TO-ACTION --- */
main > section {
  margin-bottom: 60px;
}
main > section:first-child {
  background: #22314A;
  /* Subtle accent border at left */
  border-left: 5px solid #ED7B84;
  margin-top: 15px;
  box-shadow: 0 8px 27px 0 #22314A33;
}
main .btn-primary {
  margin-top: 8px;
}

/* --- FEATURES --- */
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  color: #F2F2F2;
  /* neon deco accent left border for features */
  border-left: 4px solid #ED7B84;
  padding-left: 14px;
  background: rgba(38,84,124,0.11);
  border-radius: 9px;
  min-height: 48px;
}
.content-wrapper ul li img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0 0 6px #ED7B8488);
}

/* --- TABLES (PRICE PAGE) --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  background: #233140;
  border-radius: 12px;
  overflow: hidden;
}
thead {
  background: #26547C;
}
thead th {
  padding: 16px 10px;
  color: #fff;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
tbody td {
  padding: 13px 7px;
  color: #F2F2F2;
  font-size: 1rem;
  border-top: 1px solid #31445A;
}
table tr:nth-child(even) td {
  background: #222C3F;
}
table tr:nth-child(odd) td {
  background: #233140;
}
table td[colspan] {
  text-align: center;
}

/* --- FOOTER --- */
footer {
  background: #181F2D;
  padding: 44px 0 0 0;
  color: #AEE6FF;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: #F2F2F2;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 8px #ED7B8435);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #AEE6FF;
  font-size: 1rem;
  padding: 0 0 4px 0;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ED7B84;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.96rem;
  color: #F2F2F2;
}
.footer-contact img {
  width: 18px;
  vertical-align: baseline;
  margin-right: 7px;
  filter: drop-shadow(0 0 3px #ED7B8490);
}
.copyright {
  border-top: 1px solid #233140;
  padding: 18px 0 9px 0;
  justify-content: center !important;
  color: #7c8797;
  font-size: 0.96rem;
}

/* --- MAP PLACEHOLDER (CONTACT) --- */
.map-placeholder {
  background: #233140;
  border-radius: 12px;
  padding: 24px 16px;
  color: #c6e0f6;
  font-style: italic;
  border: 1px solid #26547C;
  margin-top: 10px;
  box-shadow: 0 1px 10px 0 #22284251;
}

/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center !important; }

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
@keyframes fadeIn {
  0% {opacity: 0;transform: translateY(16px);}
  100% {opacity: 1;transform: translateY(0);}
}
.section, .card, .testimonial-card, .btn-primary, .mobile-menu, .cookie-banner, .cookie-modal {
  animation: fadeIn 0.8s cubic-bezier(.72,-0.02,.19,1) both;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1200;
  background: #233140;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 19px 24px;
  box-shadow: 0 -5px 24px 0 #22314A77;
  transition: transform 0.27s cubic-bezier(.85,.1,.12,1);
  border-top: 3px solid #ED7B84;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
}
.cookie-banner button, .cookie-banner .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.16s;
  margin-left: 0;
  min-width: 130px;
}
.cookie-banner .accept {
  background: #ED7B84;
  color: #fff;
  font-weight: 700;
  margin-right: 5px;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #a83a4a;
  color: #fafbff;
}
.cookie-banner .reject {
  background: #F2F2F2;
  color: #222C3F;
  border: 1px solid #ed7b8460;
  font-weight: 500;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e5eafd;
  color: #b83248;
  border: 1px solid #ed7b84;
}
.cookie-banner .settings {
  background: transparent;
  color: #ED7B84;
  font-weight: 500;
  border: 1px solid #ED7B84;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #ED7B84;
  color: #fff;
  border: 1px solid #ED7B84;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width:100vw;
  height:100vh;
  background: rgba(34,49,64,0.94);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #F2F2F2;
  border-radius: 16px;
  color: #181F2D;
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 32px 0 #26547c60;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  margin-bottom: 6px;
  color: #26547C;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
  font-size: 1.08rem;
}
.cookie-modal-content input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #ED7B84;
}
.cookie-modal-content .essential[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal-content .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
}
.cookie-modal-content .btn.save {
  background: #26547C;
  color: #fff;
  font-weight: 700;
}
.cookie-modal-content .btn.save:hover,
.cookie-modal-content .btn.save:focus {
  background: #ED7B84;
}
.cookie-modal-content .btn.cancel {
  background: #B8B8B8;
  color: #26547C;
}
.cookie-modal-content .btn.cancel:hover,
.cookie-modal-content .btn.cancel:focus {
  background: #e2eafd;
  color: #a83a4a;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 830px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  .container {
    max-width: 98vw;
    padding: 0 4vw;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 8px 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card, .testimonial-card {
    max-width: 100%;
  }
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: row;
    align-items: flex-start;
  }
  .section {
    margin-bottom: 36px;
    padding: 28px 8px 30px 8px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    font-size: 0.97rem
  }
  .cookie-banner .cookie-actions {
    padding-top: 7px;
    gap: 9px;
    justify-content: flex-end;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .footer-contact {
    font-size: 0.93rem;
  }
  .footer-brand img {
    width: 32px; height: 32px;
  }
  .cookie-modal-content {
    min-width: unset;
    padding: 22px 6vw 20px 6vw;
  }
}

/* --- FOCUS STATES ACCESSIBILITY --- */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid #ED7B84;
  outline-offset: 2px;
  z-index: 2;
}

/* --- SCROLLBAR STYLING --- */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-thumb {
  background: #22314A;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ED7B84;
}

/* --- SELECTION --- */
::selection {
  background: #ED7B84;
  color: #fff;
}

/* --- BRAND NEON ACCENTS & DECORATIVE EFFECTS --- */
.btn-primary, .main-nav a, .mobile-nav a, .footer-brand img, .cookie-banner, .testimonial-card, .card {
  box-shadow: 0 0 6px 0 #ED7B8438, 0 1px 1px 0 #22314A24;
}

/* --- MISC --- */
hr {
  border: 0;
  height: 1px;
  background: #233140;
  margin: 24px 0;
  opacity: 0.7;
}

/* No grid, no columns anywhere - all layouts via flexbox only! */
