/* ================= 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: linear-gradient(150deg, #7BDCB5 0%, #30617B 100%);
  min-height: 100vh;
  color: #142430;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #30617B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #53a7be;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }

/* ================ FONTS ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1E3746;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.15; }
@media (max-width: 480px) { h1 { font-size: 2rem; } }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.2; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, blockquote, small { font-size: 1rem; margin-bottom: 12px; }
blockquote {
  font-family: 'Quicksand', 'Roboto', Arial, Helvetica, sans-serif;
  background: #F4FDF9;
  border-left: 5px solid #7BDCB5;
  color: #26414f;
  padding: 16px 20px;
  line-height: 1.45;
  margin: 0;
}

/* ============ GENERAL CONTAINERS & LAYOUT ============= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============== FLEX LAYOUT UTILS ============= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(68,117,136,0.13);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(68,117,136,0.18);
  transform: translateY(-3px) scale(1.015);
}
.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;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9FFFD;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(80,160,180,0.09);
  margin-bottom: 20px;
  color: #10272F;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #17394e;
  padding: 0;
  margin-right: 14px;
}
.testimonial-card footer {
  font-size: 0.96rem;
  font-weight: 500;
  color: #fff;
  margin-left: auto;
  padding: 5px
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-list > div {
  flex: 1 1 min(310px, 100%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(80,160,180,0.07);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}
@media (max-width: 900px) {
  .service-list { flex-direction: column; gap: 20px; }
  .service-list > div { min-width: 0; }
}

/* ================== NAVIGATION ============== */
header {
  width: 100%;
  background: linear-gradient(90deg, #30617B 58%, #7BDCB5 120%);
  box-shadow: 0 3px 18px 0 rgba(54,97,125,0.08);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  height: 72px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-nav a {
  color: #ffffff;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta {
  background: #7BDCB5;
  color: #234048;
  margin-left: 24px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(123,220,181,0.12);
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #55bd96;
  color: #fff;
}
.main-nav img {
  height: 38px;
  margin-right: 12px;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: rgba(255,255,255,0.12);
  color: #dcf9f0;
}

/* ========== MOBILE BURGER MENU ============ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #7BDCB5;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2001;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(123,220,181,0.13);
  outline: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #274757;
  box-shadow: 0 6px 32px rgba(37,71,87,0.25);
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.7,.01,.37,1);
  z-index: 2500;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #7BDCB5;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 26px 26px 8px 0;
  cursor: pointer;
  z-index: 2600;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(123,220,181,0.24);
  outline: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: center;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 0;
  width: 90%;
  text-align: center;
  border-radius: 7px;
  transition: background-color 0.17s, color 0.17s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7BDCB5;
  color: #22333b;
  outline: none;
}

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

/* ================ BUTTONS & CTA =============== */
.cta, .btn, button, input[type="submit"] {
  display: inline-block;
  background: linear-gradient(100deg, #7BDCB5 70%, #30617B 100%);
  color: #1C3F4A;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 21px rgba(123,220,181,0.11);
  cursor: pointer;
  transition: background 0.18s, color 0.19s, box-shadow 0.21s, transform 0.20s;
  margin-top: 8px;
}
.cta:hover, .btn:hover, button:hover, input[type="submit"]:hover,
.cta:focus, .btn:focus, button:focus, input[type="submit"]:focus {
  background: linear-gradient(100deg, #55bd96 70%, #223A50 100%);
  color: #fff;
  outline: none;
  box-shadow: 0 7px 18px rgba(48,97,123,0.13), 0 2px 10px rgba(123,220,181,0.08);
  transform: translateY(-1px) scale(1.02);
}
.cta.secondary {
  background: #fff;
  color: #30617B;
  border: 2px solid #7BDCB5;
  box-shadow: 0 2px 8px rgba(123,220,181,0.09);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #7BDCB5;
  color: #fff;
}

/* =============== FOOTER =============== */
footer {
  background: linear-gradient(270deg, #30617B 60%, #7BDCB5 120%);
  color: #fff;
  padding: 50px 0 0 0;
  margin-top: 60px;
  font-size: 1rem;
}
.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 30px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-wrapper > a img {
  height: 38px;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #F6FFFE;
  font-size: 1rem;
  transition: color 0.16s, text-decoration 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7BDCB5;
  text-decoration: underline;
}
.footer-contact-short {
  color: #DDF3EB;
  font-size: 1rem;
}
.footer-legal small {
  color: #dbeef5;
}
@media (max-width: 800px) {
  .footer-wrapper {
    gap: 18px;
    padding-left: 6px; padding-right: 6px;
  }
  .footer-nav { gap: 14px; }
  .footer-contact-short { font-size: 0.95rem; }
}

/* =============== LISTS & ICONS =============== */
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
ul li img, ol li img {
  height: 22px;
  width: 22px;
  margin-right: 4px;
}
.star-rating-bar img {
  height: 32px;
  width: 32px;
  display: inline-block;
}
.star-rating-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 14px 0 4px 0;
}

/* =============== PRICING TABLES ============== */
.pricing-table {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #F8FEFC;
  box-shadow: 0 2px 14px rgba(80,160,180,0.07);
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 13px 16px;
  font-size: 1rem;
}
.pricing-table th {
  background: #7BDCB5;
  color: #234048;
  font-weight: 700;
}
.pricing-table td {
  border-bottom: 1px solid #e6f6f0;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* ============= CONTACT DETAILS ============= */
.contact-short ul, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-short li img, .contact-details img {
  width: 21px;
  height: 21px;
  margin-right: 5px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =============== RESPONSIVE MEDIA QUERIES ================== */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .container { padding-right: 6px; padding-left: 6px; }
  .content-wrapper { gap: 13px; margin-bottom: 22px; }
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.18rem; }
  .testimonial-card { padding: 14px; gap: 9px; }
  .footer-wrapper { gap: 14px; padding-bottom: 18px; }
  .card { padding: 14px 8px; }
}

/* ================= ANIMATION CLASSES & EFFECTS ==================== */
.card, .cta, .btn, .cta.secondary, .testimonial-card, .service-list > div {
  transition: box-shadow 0.25s, transform 0.2s, background 0.2s;
}
.cta:active, .btn:active, .cta.secondary:active {
  transform: scale(0.97);
}
.card:active {
  transform: scale(0.98);
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #214257;
  color: #fff;
  box-shadow: 0 -2px 12px 0 rgba(33,66,87,0.16);
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeInCookie .4s ease;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  margin: 0 2px;
}
.cookie-btn.accept {
  background: #7BDCB5;
  color: #305475;
  box-shadow: 0 2px 9px rgba(123,220,181,0.10);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #55bd96;
  color: #fff;
}
.cookie-btn.reject {
  background: #df5465;
  color: #fff;
  box-shadow: 0 2px 11px rgba(239,106,90,0.07);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c12d44;
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid #7BDCB5;
  color: #214257;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #7BDCB5;
  color: #fff;
}

@media (max-width: 620px) {
  .cookie-banner__actions { flex-direction: column; gap: 10px; }
  .cookie-btn { width: 95vw; max-width: 330px; }
}

/* ====== COOKIE PREFERENCES MODAL ====== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 440px;
  background: #f7fff9;
  color: #1c2940;
  border-radius: 18px;
  box-shadow: 0 6px 48px rgba(37,71,87,0.17);
  z-index: 3500;
  padding: 28px 28px 22px 28px;
  transform: translate(-50%,-50%) scale(1.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.30s;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal__header {
  font-size: 1.25rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  color: #305475;
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #dee7ee;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.19s;
}
.cookie-toggle:checked {
  background: #7BDCB5;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 3px rgba(60,97,123,0.08);
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-category label {
  font-size: 1.01rem;
  cursor: pointer;
}
.cookie-category .essential {
  color: #55b896;
  font-weight: 600;
}
.cookie-modal__actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #305475;
  cursor: pointer;
  transition: background 0.16s;
  border-radius: 50%;
  padding: 6px 8px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e2f5e9;
  outline: none;
}
@media (max-width: 480px) {
  .cookie-modal { max-width: 99vw; padding: 14px 6vw 9px 6vw; }
}

/* ============== ADDITIONAL UTILS/CLASSES ============== */
.hide { display: none !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.flex-row { display: flex; flex-direction: row !important; }
.flex-col { display: flex; flex-direction: column !important; }
.gap-12 { gap: 12px !important; }

/* ================= ACCESSIBILITY ELEMENTS =============== */
:focus-visible {
  outline: 2px solid #7BDCB5;
  outline-offset: 2px;
}

/* =============== STRUCTURE/OVERLAP PROTECTION ========= */
main {
  min-height: 70vh;
  padding-bottom: 40px;
}

/* ============ SCROLLBAR STYLES (MODERN BROWSERS) =========== */
body::-webkit-scrollbar {
  width: 8px;
  background: #E5EEF3;
}
body::-webkit-scrollbar-thumb {
  background: #c8e6e0;
  border-radius: 12px;
}

/* ========== PRINT STYLES (NO BREAKS, MODERN) ========== */
@media print {
  body, header, footer, .container { background: #fff !important; color: #000 !important; }
  .main-nav, .mobile-menu, .footer-wrapper { display: none !important; }
}
