/* =========================
   AquaZryw CSS – gradient_modern
   Mobile-first, flexbox only, high contrast
   ========================= */

/* ==== 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, 
main, 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;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #E6F1E8 0%, #FFFFFF 100%);
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}
*, *:before, *:after { box-sizing: inherit; }
img {max-width: 100%; display: block;}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .2s; }

/* ==== FONTS ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #116F53;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.12; }
h2 { font-size: 2rem; line-height: 1.18; }
h3 { font-size: 1.3rem; }

p, li, span, a, label { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; }
p { margin-bottom: 16px; }

/* ==== COLOR VARIABLES ==== */
:root {
  --color-primary: #116F53;
  --color-secondary: #E6F1E8;
  --color-accent: #2493B7;
  --color-accent-dark: #005063;
  --color-grey: #6C7A71;
  --color-light: #FAFAFA;
  --color-shadow: rgba(17, 111, 83, 0.12);
  --radius: 16px;
  --shadow: 0 6px 24px var(--color-shadow);
  --shadow-hover: 0 8px 32px rgba(17, 111, 83, 0.16);
}

/* ==== CONTAINER ==== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: linear-gradient(90deg, #E6F1E8 0%, #FFFFFF 100%);
  box-shadow: 0 2px 10px rgba(36,147,183,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  min-height: 70px;
  gap: 18px;
  padding: 10px 20px;
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #116F53;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.cta-button {
  background: linear-gradient(96deg, #2493B7 0%, #116F53 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 26px;
  border: none;
  border-radius: 40px;
  box-shadow: 0 2px 12px rgba(36, 147, 183, 0.10);
  cursor: pointer;
  transition: background .22s, box-shadow .18s, transform .14s;
  font-size: 1rem;
  margin-left: 16px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(99deg, #005063 0%, #2493B7 90%);
  box-shadow: 0 4px 24px rgba(36,147,183,0.25);
  transform: translateY(-2px) scale(1.045);
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: none;
  color: var(--color-primary);
  border: none;
  margin-left: 15px;
  display: none;
  cursor: pointer;
  z-index: 1501;
  transition: color .13s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #E6F1E8 50%, #2493B7 100%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.8, .1, .2, 1);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--color-accent-dark);
  position: absolute;
  top: 26px; right: 22px;
  z-index: 2002;
  cursor: pointer;
  padding: 0 10px;
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 30px;
}
.mobile-nav a {
  display: block;
  color: #116F53;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 18px 18px;
  width: 100%;
  transition: background .14s, color .14s, box-shadow .12s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(17, 111, 83, 0.16);
}

@media (max-width: 1080px) {
  .container { max-width: 960px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
  .container { max-width: 98vw; padding: 0 10px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; align-items: center; }
  .main-nav { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 480px) {
  header img { height: 36px; }
  .mobile-nav a { font-size: 1rem; padding: 16px; }
  :root { --radius: 11px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* ========== MAIN PAGE SECTIONS LAYOUT ========== */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  width: 100%;
  background: transparent;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
  position: relative;
}
/* --- Text-image, content grid & cards --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 26px 22px;
  position: relative;
  transition: box-shadow .21s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.018);
}

.text-section {
  padding: 40px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; align-items: stretch; }
}

.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 0;
}
.features h2 {
  margin-bottom: 16px;
  font-size: 1.7rem;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features ul li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .18s, transform .13s;
  position: relative;
}
.features ul li:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.features ul li img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #E6F1E8;
  padding: 4px;
}
.features ul li h3 {
  font-size: 1.13rem;
  color: var(--color-accent-dark);
  margin-bottom: 6px;
}
.features ul li p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .features ul { flex-wrap: wrap; gap: 16px;}
  .features ul li { min-width: 90%; max-width: 100%; }
}

/* --- Services Cards --- */
.services
{ width: 100%; }
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 12px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 22px 22px 22px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .13s;
  position: relative;
}
.service-card img {
  width: 38px; height: 38px; margin-bottom: 8px; border-radius: 10px; background: #E6F1E8; padding: 4px; }
.service-card h3 { font-size: 1.1rem;color: var(--color-accent-dark); margin-bottom: 4px; }
.service-card p { color: #343; margin-bottom: 0; font-size: 1rem; }
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.032);
}
@media (max-width: 1050px) {
  .service-cards { gap: 12px; }
  .service-card { max-width: 96vw; }
}
@media (max-width: 900px) {
  .service-cards { flex-direction: column; gap: 18px; }
  .service-card {max-width: 100%;}
}

/* --- Certifications / About --- */
.certifications {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.certifications img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E6F1E8;
  box-shadow: 0 2px 8px rgba(36,147,183,0.05);
}
@media (max-width:600px) { .certifications img { width:38px;height:38px; } }

/* --- Contact --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info ul {
  margin-left: 0;
}
.contact-info li,
.contact-summary li {
  margin-bottom: 8px;
  color: #124b39;
  font-size: 1.05rem;
}
.contact-summary {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.map-placeholder {
  background: #E6F1E8;
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.map-placeholder img { width: 35px; height: 35px; }
.map-placeholder span { color: #116F53; font-weight: 500; }

/* --- Footer --- */
footer {
  background: linear-gradient(93deg, #E6F1E8 0%, #FFFFFF 100%);
  box-shadow: 0 -2px 10px rgba(36,147,183,.08);
  padding: 36px 0 16px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
}
.branding {
  display: flex;
  align-items: center;
  gap: 18px;
}
.branding img { width: 48px; height: 48px; }
.branding span { font-size: 1.1rem; color: #116F53; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; max-width: 350px; }
.footer-nav {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
footer p {
  font-size: .9rem;
  color: #6C7A71;
  margin-top: 10px;
}

@media (max-width: 600px) {
  footer .container { gap: 18px; }
  .branding img { width: 30px; height: 30px; }
  .branding span { font-size: 0.95rem; }
}

/* ============ TESTIMONIALS ============ */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #252;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 22px 18px 22px;
  min-width: 210px;
  max-width: 400px;
  flex: 1 1 275px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-accent);
  transition: box-shadow .19s, transform .14s;
  font-size: 1rem;
}
.testimonial-card p {
  color: #124b39;
  font-size: 1.1rem;
  margin-bottom: 11px;
}
.testimonial-card span {
  color: var(--color-grey);
  font-style: italic;
  font-size: .99rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.018);
}
@media (max-width:900px){.testimonial-cards{flex-direction:column;gap:18px;}.testimonial-card{max-width:100%;}}

/* Feature-item special utility class */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2px solid #2493B7;
  padding: 22px 26px;
  z-index: 3000;
  box-shadow: 0 -4px 24px rgba(36,147,183,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookie-slide-up .6s cubic-bezier(.5,.85,.38,1);
}
@keyframes cookie-slide-up { from { transform: translateY(130%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
#cookie-banner p {
  color: #116F53;
  font-size: 1rem;
  margin-bottom: 0;
}
#cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  background: linear-gradient(90deg, #2493B7 0%, #116F53 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 9px 20px;
  cursor: pointer;
  font-size: .97rem;
  transition: background .18s, transform .12s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: linear-gradient(99deg, #005063 0%, #2493B7 90%);
  transform: translateY(-1px) scale(1.028);
}
.cookie-btn.reject {
  background: #E6F1E8;
  color: #2493B7;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #2493B7;
  color: #fff;
}

/* --- Cookie modal --- */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(36,147,183,0.17);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in .41s;
}
#cookie-modal.open {
  display: flex;
}
@keyframes fade-in { from { opacity: 0;} to { opacity: 1; } }
.cookie-modal-content {
  background: #fff;
  padding: 38px 22px 22px 22px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(17, 111, 83, 0.26);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
  width: 94vw;
  position: relative;
}
.cookie-modal-content h3 {
  color: #116F53;
  font-size: 1.28rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #E6F1E8;
  padding: 9px 0;
}
.cookie-modal-category:last-child { border-bottom: none; }
.cookie-modal-category label {
  font-size: 1.08rem;
  flex: 1;
  color: #005063;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #2493B7;
  width: 20px; height: 20px;
  margin-left: 4px;
}
.cookie-modal-category input[disabled] { opacity: .4; pointer-events: none; }
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #116F53;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
@media (max-width: 500px) {
  .cookie-modal-content { padding: 26px 9px 9px 9px; }
  #cookie-banner { padding: 18px 5vw; }
}

/* ------ Misc. ------ */
section:not(:last-child) { margin-bottom: 56px; }
h1, h2, h3 { margin-top: 0; }

strong { font-weight: 600; color: #005063; }
a[href]:hover { color: #2493B7; }

/* --- List Styles --- */
ul, ol {
  padding-left: 24px;
  margin-bottom: 12px;
  color: #345;
}
ul li, ol li {margin-bottom: 8px;}

/* --- Responsive Section Padding --- */
@media (max-width: 900px) {
  section, .section { padding: 30px 5vw; }
}
@media (max-width: 600px) {
  section, .section { padding: 22px 2vw 12px 2vw; }
}

/* -- Utility classes for spacing/layout -- */
.mb-32 { margin-bottom: 32px; }
.mb-20 { margin-bottom: 20px; }
.mt-24 { margin-top: 24px; }
.pt-18 { padding-top: 18px; }

/* ---- Animations, micro-interactions ---- */
.cta-button, .service-card, .features ul li, .testimonial-card, .card {
  transition: box-shadow .23s cubic-bezier(.48,.13,.21,1), transform .15s, background .14s, color .18s;
}
button:focus, [tabindex]:focus {
  outline: 2px solid #005063;
  outline-offset: 2px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #E6F1E8;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #2493B7;
  border-radius: 8px;
}

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