/* VOLTIN HARBOR Gradient Modern CSS Theme - Mobile First Responsive - Flexbox Layouts Only */
/* --- 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 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: linear-gradient(135deg, #e5e9f2 0%, #ffffff 100%);
  color: #2C3E50;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20694C;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #478A6C;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
}
button {
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 22px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* --- Core Layout --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(44,62,80,.08);
}

/* --- Header + Nav --- */
header {
  background: linear-gradient(90deg, #ffffff 0%, #e5e9f2 100%);
  box-shadow: 0 1px 8px rgba(44,62,80,0.03);
  z-index: 50;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: flex-start;
}
.main-nav img {
  height: 44px;
  width:auto;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  font-weight: 500;
  color: #2C3E50;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #e5e9f2;
  color: #20694C;
}
.cta-btn {
  background: linear-gradient(90deg, #478A6C 0%, #20694C 100%);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 28px;
  margin-left: 22px;
  box-shadow: 0 1px 6px rgba(44,62,80,0.08);
  transition: background .18s, box-shadow .18s, color .18s;
  letter-spacing: 0.5px;
  border: none;
  display: inline-block;
  outline: none;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus,
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #20694C 0%, #478A6C 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px 0 rgba(44,62,80,0.10);
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 24px;
  background: #478A6C;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 80;
  transition: background .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #20694C;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.07);
  z-index: 1200;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: #478A6C;
  color: #fff;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  margin: 20px 22px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 1220;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #20694C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 32px;
  margin-top: 18px;
  background: #fff;
  border-radius: 14px 0 0 14px;
  box-shadow: 4px 0 24px rgba(44,62,80,0.13);
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #2C3E50;
  font-family: 'Merriweather', 'Georgia', serif;
  padding: 14px 0;
  font-weight: 600;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e5e9f2;
  color: #20694C;
}

@media (max-width: 990px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 6px;
  }
  .main-nav .cta-btn {
    margin-left: 10px;
  }
}
@media (max-width: 800px) {
  .main-nav a, .main-nav img {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    min-height: 65px;
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(96deg, #e5e9f2 2%, #ffffff 98%);
  position: relative;
  padding: 0;
}
.hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 14px;
}
.hero h1 {
  font-size: 2.3rem;
  background: linear-gradient(92deg, #2C3E50 38%, #20694C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #2C3E50;
  max-width: 680px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* --- FLEX CONTENT COMPONENTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44,62,80,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
  min-width: 260px;
}
.card:hover,
.card:focus {
  box-shadow: 0 6px 32px 0 rgba(32,105,76,0.13);
  transform: translateY(-3px) scale(1.024);
  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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(44,62,80,0.07);
  padding: 24px 22px 18px 30px;
  margin-bottom: 20px;
  min-width: 250px;
  border-left: 6px solid #478A6C;
  transition: box-shadow .16s, border-color .18s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 24px 0 rgba(32,105,76, 0.11);
  border-left-color: #20694C;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #2C3E50;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
}
.testimonial-author {
  font-size: 1rem;
  color: #20694C;
  font-weight: 700;
  margin-top: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7fafc;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px 0 rgba(44,62,80,0.05);
  padding: 22px 18px 18px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .14s, background .14s;
}
.feature-item img {
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.08rem;
  color: #20694C;
  margin-bottom: 0;
  margin-top: 0;
}
.feature-item p {
  font-size: 1rem;
  color: #2C3E50;
}

/* --- Section Specifics --- */
.features {
  background: none;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 0;
}
.about-teaser {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(44,62,80,0.05);
}
.text-section {
  margin-bottom: 5px;
}
.text-section ul {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #20694C;
  font-size: 1rem;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section a {
  color: #20694C;
  font-weight: 700;
  font-size: 1rem;
}
.about {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 rgba(44,62,80,0.06);
}
.unique-features {
  background: #fafbfc;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(44,62,80,0.06);
}
.unique-features ul {
  margin-left: 0;
  padding-left: 24px;
}

/* --- Services --- */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 27px;
}
.service-item {
  background: #f6faf7;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(32,105,76,0.03);
  padding: 26px 19px 16px 23px;
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-item h3 {
  color: #20694C;
  font-size: 1.06rem;
}
.service-item .service-price {
  color: #478A6C;
  background: #e5e9f2;
  border-radius: 20px;
  padding: 5px 17px;
  font-weight: 600;
  margin-top: 8px;
  font-size: .98rem;
}
.services ul {
  margin-top: 18px;
  margin-bottom: 0;
  color: #20694C;
}
.services ul li {
  margin-bottom: 7px;
}

/* --- Team Section --- */
.about-team .team-roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.about-team .text-section {
  flex: 1 1 280px;
  background: #f7fafc;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(44,62,80,0.04);
  padding: 20px 18px 15px 18px;
  margin-bottom: 20px;
}

/* --- CTA --- */
.cta {
  background: linear-gradient(90deg, #20694C 0%, #478A6C 72%, #E5E9F2 185%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(32,105,76,0.10);
}
.cta h2, .cta p {
  color: #fff;
}
.cta-btn {
  margin-top: 10px;
}

/* --- FAQ/Resources --- */
.faq ul, .resources ul {
  margin-top: 17px;
  color: #20694C;
}
.faq li, .resources li {
  margin-bottom: 14px;
}
.faq strong, .resources strong {
  color: #2C3E50;
  font-weight: 700;
}

/* --- LEGAL/INFO TEXT --- */
.legal .text-section {
  background: #f9fafb;
  border-radius: 10px;
  padding: 25px 20px 13px 20px;
  box-shadow: 0 1px 5px rgba(44,62,80,0.05);
}

/* --- Contact Info --- */
.contact-info .text-section p {
  margin-bottom: 8px;
}
.contact-info .text-section a {
  font-weight: 600;
  color: #20694C;
}

/* --- Footer --- */
footer {
  background: #2C3E50;
  color: #fff;
  padding: 36px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #E5E9F2;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 6px 16px;
  border-radius: 7px;
  transition: background .18s, color .15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #20694C;
  color: #fff;
}
.footer-copy {
  text-align: center;
  color: #b9c1cc;
  font-size: 0.95rem;
}

/* --- Cookie Banner + Modal --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-top: 3px solid #20694C;
  padding: 22px 16px;
  box-shadow: 0 -1px 18px 0 rgba(32,105,76,0.14);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform .32s;
}
.cookie-banner.hide {
  transform: translateY(150%);
}
.cookie-banner-message {
  font-size: 1.05rem;
  color: #2C3E50;
  max-width: 440px;
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  margin-left: 10px;
}
.cookie-btn {
  font-size: .97rem;
  background: #478A6C;
  color: #fff;
  border-radius: 16px;
  padding: 9px 20px;
  font-weight: 700;
  transition: background .16s;
  border: none;
  outline: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #20694C;
  color: #fff;
}
.cookie-btn-settings {
  background: #e5e9f2;
  color: #20694C;
}
.cookie-btn-settings:focus, .cookie-btn-settings:hover {
  background: #f3faf8;
  color: #478A6C;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98%;
  max-width: 400px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2.5px 24px 0 rgba(32,105,76,0.15);
  padding: 36px 25px 24px 25px;
  z-index: 10000;
  transform: translate(-50%, -50%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .23s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h3 {
  font-size: 1.24rem;
  color: #20694C;
  margin-bottom: 2px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 0.96rem;
  color: #2C3E50;
}
.cookie-toggle {
  width: 34px;
  height: 18px;
  border-radius: 10px;
  background: #e5e9f2;
  display: inline-block;
  position: relative;
  transition: background .14s;
  vertical-align: middle;
}
.cookie-toggle input {
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #20694C;
  transition: left .17s, background .17s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #478A6C;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* --- Microinteractions & Transitions --- */
.section, .card, .feature-item, .cta, .testimonial-card, .about, .unique-features, .about-teaser, .service-item, .about-team .text-section, .legal .text-section {
  transition: box-shadow .16s, border-color .17s, background .15s;
}

/* --- Typography Rhythm --- */
body, p, ul, ol, li {
  margin-bottom: 0;
}
main section {
  margin-bottom: 60px;
}
.content-wrapper { /* for spacing around section internals */
  margin-bottom: 0;
  padding: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .services .service-list, .about-team .team-roles-grid, .card-container, .content-grid {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 97%;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .section, .cta, .about, .unique-features, .about-teaser {
    padding: 22px 6px;
    border-radius: 12px;
  }
  .main-nav {
    flex-direction: row;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .hero h1 {
    font-size: 1.67rem;
  }
  .hero .container {
    padding-top: 26px;
    padding-bottom: 32px;
  }
  .content-grid, .feature-grid, .services .service-list, .about-team .team-roles-grid,
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card, .feature-item, .service-item, .about-team .text-section {
    min-width: 0;
    padding: 17px 8px 13px 13px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 30px 0 12px 0;
  }
  .footer-nav {
    gap: 13px;
  }
  .cookie-banner-message {
    font-size: .97rem;
    max-width: 210px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* --- Utility: Visibilities for Mobile Menu --- */
@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --- Accessibility Focus Styles --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #478A6C;
  outline-offset: 2px;
}

/* --- End VOLTIN HARBOR Gradient Modern Theme --- */
