/* ==============================  CSS 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,
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;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F6F7F9;
  color: #232B44;
  min-height: 100vh;
  width:100%;
}
ol, ul {
  list-style: disc inside;
}
a {
  color: #1BB399;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FA2172;
  outline: none;
}
img {
  max-width: 100%;
  display: inline-block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #232B44;
  font-weight: 800;
  line-height: 1.18;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; letter-spacing: -1px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

p, ul, ol, blockquote {
  margin-bottom: 14px;
  font-size: 1rem;
}
strong, b { font-weight: 700; color: #1BB399; }
blockquote {
  margin: 0 0 14px 0;
  font-size: 1.125rem;
  font-style: italic;
  border-left: 4px solid #1BB399;
  padding-left: 12px;
  color: #232B44;
}
cite {
  font-size: 1rem;
  color: #232B44;
  opacity: 0.85;
  margin-left: 8px;
}

/* =========================== CONTAINER & LAYOUTS =========================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(37,211,174,0.13), 0 1.5px 8px 0 rgba(35,43,68,0.09);
  min-height: 90px;
  transition: box-shadow 0.25s, transform 0.20s;
  border-left: 5px solid #1BB399;
}
.testimonial-card:hover {
  box-shadow: 0 9px 32px 0 rgba(27,179,153,0.18), 0 4px 18px 0 rgba(35,43,68,0.16);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 3.5px 13px 0 rgba(35,43,68,0.09), 0 1px 3px 0 rgba(37,211,174,0.07);
  margin-bottom: 20px;
  width: 100%;
  flex: 1 1 230px;
  min-width: 210px;
  transition: box-shadow 0.2s, transform 0.20s;
}
.feature-item img {
  width: 36px;
  height: 36px;
}
.feature-item:hover {
  box-shadow: 0 9px 28px 0 rgba(250,33,114,0.1), 0 2.5px 10px 0 rgba(27,179,153,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* =========================== HERO =========================== */
.hero {
  padding: 60px 0 36px 0;
  background: linear-gradient(90deg, #1BB399 0%, #5ff4c7 70%, #F6F7F9 100%);
  background-size: 400% 400%;
  animation: hero-gradient 8s ease-in-out infinite;
}
@keyframes hero-gradient {
  0%, 100% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
}
.hero h1 {
  font-size: 2.5rem;
  color: #232B44;
  line-height: 1.13;
  font-weight: 900;
  text-shadow: 0 1.5px 0 #fff7, 0 3px 12px #1BB39944;
}
.hero p {
  color: #232B44;
  font-size: 1.18rem;
  margin-bottom: 18px;
}
/* ================= CARD & SERVICE LISTS =================== */
.services-list,
ul.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list > li, .services-list > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3.5px 11px 0 rgba(35,43,68,0.08);
  padding: 25px 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.services-list h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-size: 1.125rem;
}
.services-list h3 span {
  color: #1BB399;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-left: 10px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3.5px 11px 0 rgba(35,43,68,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 16px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 34px 0 rgba(27,179,153,0.22);
  transform: translateY(-2px) scale(1.015);
}

/* ================= CTA BUTTONS =================== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 28px;
  box-shadow: 0 3.5px 12px 0 rgba(27,179,153,0.06);
  background: #FA2172;
  color: #fff!important;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, transform 0.12s;
}
.cta.primary {
  background: #1BB399;
  color: #fff!important;
  box-shadow: 0 2px 8px 0 rgba(37,211,174,0.36);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FA2172;
  color: #fff!important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px 0 rgba(250,33,114,0.09);
}
.cta:active {
  transform: scale(0.96) translateY(2px);
}

/* ================= MOBILE NAVIGATION =================== */
header {
  width: 100%;
  background: #232B44;
  color: #fff;
  padding: 0;
  box-shadow: 0 1px 4px #232B4435;
  position: relative;
  z-index: 31;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 70px;
  gap: 18px;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 2px;
  position: relative;
  border: none;
  background: none;
}
.main-nav a:hover, .main-nav a.active {
  color: #1BB399;
  text-shadow: 0px 1px 8px #1bb39933;
  transition: color 0.16s, text-shadow 0.13s;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #1bb399;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  position: absolute;
  right: 22px;
  top: 13px;
  z-index: 35;
  box-shadow: 0 1.5px 9px 0 #1bb39933;
  cursor: pointer;
  transition: background 0.2s, color 0.13s, transform 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover{
  background: #FA2172;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #232B44e6;
  color: #fff;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.91,-0.17,.68,1.29);
  z-index: 99;
  padding: 0 28px;
  box-shadow: 0 10px 60px 0 #232B44b6;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  position: absolute;
  right: 26px;
  top: 20px;
  cursor: pointer;
  z-index: 103;
  padding: 0;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: #FA2172;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 96px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.21rem;
  font-weight: 800;
  position: relative;
  padding: 14px 8px;
  border-radius: 7px;
  background: none;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1BB399;
  color: #fff;
  box-shadow: 0 4.5px 28px 0 #1BB39935;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 7px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ============= RESPONSIVE FLEX SECTIONS ==============  */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 36px 0 20px 0;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 3px;
  }
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.17rem; }
  .hero h1 { font-size: 1.35rem; }
  .section { padding: 28px 4px; }
}

/* =================== FOOTER =================== */
footer {
  background: #232B44;
  color: #fff;
  padding: 36px 0 15px 0;
  margin-top: 38px;
  font-size: 0.97rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #1BB399;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FA2172;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1.5px dotted #FA2172;
  transition: color 0.16s, border 0.12s;
}
.footer-contact a:hover {
  color: #1BB399;
  border-bottom: 2px solid #1BB399;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.footer-social img {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #232B44;
  color: #fff;
  box-shadow: 0 -4px 32px 0 #232B4433;
  padding: 24px 12px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookie-slide-in 0.7s cubic-bezier(.69,-0.07,.32,1.02);
  font-size: 1rem;
}
@keyframes cookie-slide-in {
  0% {transform: translateY(120%);}
  100% {transform: translateY(0);}
}
.cookie-consent-banner p {
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  background: #1BB399;
  color: #fff;
  border: none;
  padding: 10px 24px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1.2px 5px #1BB39929;
  transition: background 0.13s, color 0.14s;
}
.cookie-btn.reject {
  background: #FA2172;
}
.cookie-btn.settings {
  background: #232B44;
  color: #fff;
  border: 2px solid #1BB399;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FA2172;
  color: #fff;
}
.cookie-btn.settings:hover { background: #1BB399; border-color: #1BB399; }

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232B44d6;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.4s ease;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232B44;
  border-radius: 20px;
  padding: 32px 24px 26px 24px;
  box-shadow: 0 10px 40px 0 #232B4438;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2201;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #F6F7F9;
  border-radius: 9px;
  padding: 12px 9px;
  margin-bottom: 7px;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: #1BB399;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  color: #FA2172;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2209;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-modal .cookie-btn{
  min-width: 128px;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 5px 18px 5px;
    min-width: unset;
    max-width: 99vw;
  }
}

/* ========== FORM & MISC ============ */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 9px 12px;
  border-radius: 7px;
  border: 1.5px solid #1BB39966;
  outline: none;
  margin-bottom: 13px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FA2172;
}

/* ========== UTILITIES ============= */
.hide { display: none!important; }
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 8px!important; }
.mt-1 { margin-top: 8px!important; }
.gap-1 { gap: 8px!important; }
.gap-2 { gap: 14px!important; }

/* ================ LEGAL SECTIONS ================ */
.legal .content-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 28px 18px 30px 18px;
  box-shadow: 0 3.5px 14px 0 rgba(35,43,68,0.11);
  margin-bottom: 36px;
}

/* ================ PAGE-SPECIFIC ================ */
.confirmation .content-wrapper, .contact .content-wrapper, .about .content-wrapper {
  background: #fff;
  border-radius: 18px;
  padding: 30px 18px;
  box-shadow: 0 2.5px 11px 0 rgba(35,43,68,0.10);
}

/* ================ MICRO-INTERACTIONS ================ */
.feature-item, .testimonial-card, .card, .services-list > li, .services-list > div {
  transition: box-shadow 0.24s, transform 0.16s;
}

@media (hover: hover) {
  .feature-item:hover, .card:hover {
    box-shadow: 0 10px 36px 0 rgba(27,179,153,.21), 0 4px 28px 0 rgba(250,33,114,.06);
    transform: translateY(-5px) scale(1.03);
  }
  .testimonial-card:hover {
    box-shadow: 0 10px 37px 0 rgba(27,179,153,0.16);
    transform: translateY(-3.5px) scale(1.03);
  }
}

/* ====== MINIMUM SPACING BETWEEN CARDS/SECTIONS (MANDATORY) ====== */
.section, .card-container, .content-grid, .feature-grid, .services-list, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .services-list {
  gap: 24px;
}
.feature-item, .testimonial-card, .card {
  margin-bottom: 20px!important;
}

/* ====== ENSURE FLEX ONLY, NEVER GRID/COLUMNS ====== */
/* All layouts use display:flex only! */

/* =================== SCROLLBAR & SELECTION FOR VIBRANCY =================== */
::-webkit-scrollbar {
  width: 11px;
  background: #F6F7F9;
}
::-webkit-scrollbar-thumb {
  background: #1BB399CC;
  border-radius: 12px;
  border: 2px solid #F6F7F9;
}
::-webkit-scrollbar-thumb:hover {
  background: #FA2172CC;
}
::selection {
  background: #1BB399;
  color: #fff;
}

/* =================== END =================== */
