/* VORTEX ADVENTURE: Tech Futuristic Style - CSS RESET & FONT IMPORTS */
/* RESET & BASELINE NORMALIZATION */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #101d24;
  color: #f7fafc;
  min-height: 100vh;
  background-image: linear-gradient(135deg, #14303b 0%, #184452 100%);
  letter-spacing: 0.02em;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Lato:wght@400;700&display=swap');

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 8px;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

a {
  color: #2CA686;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #14f7c0;
  text-decoration: underline;
}

strong {
  color: #2CA686;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; font-weight: 700; }
h4, h5, h6 { font-weight: 700; margin-bottom: 8px; }
.subheadline {
  font-size: 1.125rem;
  color: #a2ccd7;
  margin-bottom: 18px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
/* CONTAINER & SECTION LAYOUTS */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #162b32;
  box-shadow: 0 4px 32px 0 rgba(67,255,236,0.07);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid rgba(44,166,134,0.18);
  transition: box-shadow 0.24s, border-color 0.24s;
}
.card:hover {
  border-color: #2CA686;
  box-shadow: 0 0 0 2px #2CA68644, 0 4px 32px 8px rgba(44,166,134,0.13);
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.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;
  padding: 20px;
  background: #fff;
  color: #184452;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px 0 rgba(24,68,82,0.10);
  border-left: 4px solid #2CA686;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 8px #2CA68618, 0 4px 18px 0 rgba(24,117,93,0.10);
}
.testimonial-card p {
  font-size: 1.15rem;
  line-height: 1.5;
  color: #184452;
}
.testimonial-meta, .rating {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #18755d;
  opacity: 0.82;
}
.rating {
  color: #2CA686;
  font-size: 1.1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: transparent;
  border-radius: 10px;
  padding: 0 0 24px 0;
}

/* FLEX LAYOUTS FOR LISTS */
.features-grid, .features-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 16px 0;
  list-style: none;
}
.features-grid li, .features-list li, .service-list li {
  background: #173a42;
  color: #f6fafd;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(15,37,41,0.09);
  padding: 30px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  border: 1.2px solid #20547522;
  min-width: 220px;
  transition: box-shadow 0.22s, border-color 0.22s;
  position: relative;
}
.features-grid li:hover, .features-list li:hover, .service-list li:hover {
  border-color: #2CA686;
  box-shadow: 0 0 0 1.5px #2CA68641;
  z-index: 1;
}
.features-grid img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px #2CA68644);
}

.service-list li span {
  margin-top: 10px;
  color: #2CA686;
  font-weight: 700;
  font-size: 1.05rem;
}

.text-section {
  margin-bottom: 24px;
}
.text-section :last-child {
  margin-bottom: 0;
}
blockquote {
  margin: 18px 0;
  padding-left: 20px;
  border-left: 4px solid #2CA686;
  color: #a0becc;
  font-style: italic;
}

/**************************************
  NAVIGATION + HEADER (DESKTOP)
**************************************/
header {
  background: #162b32;
  box-shadow: 0 1.5px 18px 0 rgba(15,37,41,0.09);
  position: sticky;
  top: 0;
  z-index: 1100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #f6fafd;
  opacity: 0.94;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s, box-shadow 0.22s;
  font-weight: 700;
}
.main-nav a.button-primary {
  background: #2CA686;
  color: #11262c;
  border-radius: 6px;
  padding: 10px 20px;
  margin-left: 8px;
  box-shadow: 0 2px 12px 0 #2CA68622;
  text-shadow: none;
  transition: background 0.16s, box-shadow 0.18s;
}
.main-nav a.button-primary:hover, .main-nav a.button-primary:focus {
  background: #14f7c0;
  color: #072c15;
  box-shadow: 0 2px 18px 0 #14f7c022,0 0 0 2px #14f7c066;
}
.main-nav a:hover, .main-nav a:focus {
  color: #14f7c0;
  background: #184452e3;
  opacity: 1;
}
.main-nav img {
  width: 46px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 #2CA68618;
}

/**************************************
  HERO SECTIONS
**************************************/
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 60px 0;
  min-height: 440px;
  background: linear-gradient(135deg, #1a5752 0%, #184452 60%, #205475 100%);
  position: relative;
  box-shadow: 0 4px 40px 0 #2CA68611;
  overflow: hidden;
}
.hero-section .container {
  z-index: 1;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 720px;
  background: transparent;
  box-shadow: none;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.8rem;
  text-shadow: 0 3px 24px #18755d2d, 0 0 2px #2CA686;
}
.hero-section .button-primary {
  margin-top: 18px;
}

/**************************************
  BUTTONS & INTERACTIONS
**************************************/
.button-primary, a.button-primary, button.button-primary {
  background-color: #2CA686;
  color: #101d24;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 18px 0 #2CA68618;
  cursor: pointer;
  letter-spacing:0.05em;
  text-decoration: none;
  outline: none;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  position: relative;
  z-index: 2;
}
.button-primary:active {
  transform: scale(0.97);
}
.button-primary:hover, .button-primary:focus {
  background: #14f7c0;
  color: #072c15;
  box-shadow: 0 2px 24px 0 #14f7c022, 0 0 0 2px #14f7c066;
}

.button-secondary {
  background: transparent;
  color: #2CA686;
  border: 1.8px solid #2CA686;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 22px;
  transition: background 0.15s, color 0.16s, border-color 0.13s;
  cursor: pointer;
  margin-left: 6px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #37c99f;
  color: #fff;
  border-color: #14f7c0;
}

/**************************************
  MODALS, OVERLAYS, ETC.
**************************************/
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,29,36,0.87);
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
}
.modal-content {
  background: #173a42;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 40px #2CA68638;
  min-width: 295px;
  max-width: 98vw;
}

/**************************************
  FLEX UTILS
**************************************/
.space-between {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}

/**************************************
  CTA & SPECIAL SECTIONS
**************************************/
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #173a42;
  padding: 48px 0;
  margin-bottom: 0;
}
.cta-section h2 {
  color: #14f7c0;
  font-size: 2.1rem;
}

/**************************************
  FOOTER
**************************************/
footer {
  background: #101d24;
  padding: 54px 0 28px 0;
  font-size: 1rem;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-menu {
  margin-top: 8px;
}
footer a {
  color: #2CA686;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: .93;
  transition: background 0.15s, color 0.15s;
}
footer a:hover, footer a:focus {
  background: #18755d;
  color: #fff;
  opacity: 1;
}
.footer-contact {
  color: #a6ccd1;
  font-size: 0.99rem;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #2ca686;
  text-decoration: underline;
}
.footer-contact address {
  font-style: normal;
  margin-bottom: 8px;
  color: #53b8a5;
}

/**************************************
  MOBILE MENU (BURGER) NAVIGATION
**************************************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2CA686;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 13px 6px 13px;
  margin: 0 10px;
  z-index: 1202;
  transition: box-shadow 0.16s, background 0.19s, color 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #14f7c0;
  color: #173a42;
  box-shadow: 0 0 0 2px #14f7c054;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg,#1a5752 0%, #184452 100%);
  transition: transform .33s cubic-bezier(.67,-0.13,.32,1.19), opacity .23s;
  transform: translateX(-100vw);
  opacity: 0;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  animation: slideinMenu .47s cubic-bezier(.37,1.18,.39,1) 1;
}
@keyframes slideinMenu {
  from { transform: translateX(-100vw); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #2CA686;
  font-size: 1.8rem;
  position: absolute;
  top: 20px;
  right: 25px;
  cursor: pointer;
  z-index: 1201;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #14f7c0;
  color: #173a42;
}
.mobile-nav {
  margin-top: 70px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  padding: 36px 32px 24px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .045em;
  padding: 13px 2px;
  border-bottom: 2px solid #2CA68633;
  width: 100%;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #2CA686;
  color: #142c2e;
  outline: none;
}

/**************************************
  COOKIE CONSENT BANNER
**************************************/
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #162b32;
  border-top: 3px solid #2CA686;
  box-shadow: 0 -3px 24px 0 #2CA68611;
  z-index: 1290;
  padding: 22px 28px 22px 20px;
  color: #f7fafc;
  font-size: 1rem;
  transition: transform 0.30s, opacity 0.25s;
  animation: appearBanner 0.43s cubic-bezier(.45,1.34,.27,1);
}
@keyframes appearBanner {
  from { opacity: 0; transform: translateY(85px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 1 1 270px;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .button-primary {
  font-size: 0.97rem;
  padding: 10px 20px;
}
.cookie-banner .button-secondary {
  font-size: 0.97rem;
  padding: 10px 18px;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #2CA686;
  border: none;
  font-size: .99rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 5px;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.16s,color 0.16s;
}
.cookie-banner .cookie-settings:focus, .cookie-banner .cookie-settings:hover {
  background: #2CA68623;
  color: #14f7c0;
}

/* Cookie Modal Popup */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1299;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,29,36,0.89);
  justify-content: center;
  align-items: center;
  animation: popupAppear 0.28s cubic-bezier(.44,1.24,.52,1);
}
.cookie-modal.active {
  display: flex;
}
@keyframes popupAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #173a42;
  padding: 44px 30px 32px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 40px #2CA68638;
  min-width: 320px;
  max-width: 97vw;
  color: #fff;
  font-size: 1.08rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal-content h3 {
  color: #2CA686;
  margin-bottom: 7px;
}
.cookie-modal-content label {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #2CA686;
  width: 17px;
  height: 17px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: #2CA686;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 5px 12px;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #18755d;
  color: #fff;
}
.cookie-modal-content .button-primary {
  margin-top: 17px;
}
.cookie-modal-content .category-desc {
  color: #b7ede7;
  font-size: 0.94rem;
  margin-left: 24px;
  margin-bottom: 7px;
}

/**************************************
  MEDIA QUERIES: RESPONSIVE
**************************************/
@media (max-width: 1120px) {
  .container {
    max-width: 98vw;
  }
  .hero-section {
    min-height: 340px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 940px) {
  .main-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .footer-nav, .footer-menu {
    gap: 9px;
  }
}
@media (max-width: 780px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  .main-nav a, .footer-nav a, .footer-menu a {
    font-size: 0.99rem;
  }
  .features-grid li, .features-list li, .service-list li {
    flex: 1 1 180px;
    min-width: 140px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 17px;
    right: 18px;
  }
  .section, .hero-section, .cta-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .footer-contact, .footer-menu {
    gap: 15px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 14px 10px;
    gap: 10px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
@media (max-width: 650px) {
  .features-grid, .features-list, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .features-grid li, .features-list li, .service-list li {
    min-width: 0;
    width: 100%;
  }
  .footer-contact, .footer-menu, .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 525px) {
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.13rem; }
  .hero-section {
    min-height: 160px;
    padding: 32px 0;
  }
  .section, .cta-section {
    padding: 24px 4px;
  }
}
@media (max-width: 360px) {
  .cookie-modal-content, .modal-content {
    min-width: 10px;
    padding: 16px 2px 12px 6px;
  }
  .hero-section .content-wrapper {
    padding: 0;
  }
}

/* TEXT-IMAGE SECTIONS FLEX (Responsive) */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/**************************************
  MICRO-ANIMATIONS
**************************************/
.card, .features-grid li, .features-list li, .service-list li, .testimonial-card {
  transition: box-shadow 0.15s, border-color 0.15s, transform 0.18s;
}
.card:hover, .features-grid li:hover, .features-list li:hover, .service-list li:hover {
  transform: translateY(-5px) scale(1.025);
}
.button-primary, .button-secondary {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s, transform 0.13s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.98);
}

/**************************************
  UTILITY
**************************************/
::-webkit-scrollbar {
  width: 8px;
  background: #184452;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #2CA68633;
  border-radius: 7px;
}

/**************************************
  COLOR UTILITY CLASSES
**************************************/
.bg-primary{background: #184452!important;}
.bg-secondary{background: #F3E9DD!important;}
.bg-accent{background: #2CA686!important;}
.text-primary{color: #184452!important;}
.text-accent{color: #2CA686!important;}

/**************************************
  END OF STYLE CSS
**************************************/