/* --- Aqua Surge Bezpieczeństwo - tech_futuristic style.css --- */

/* CSS RESET & BASELINE --------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #101623;
  color: #f4f6fa;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21A5B5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16ede6;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* FONT IMPORTS ----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* VARIABLES & BRAND COLORS ------------------------------------------------*/
:root {
  --color-primary: #19325B;
  --color-secondary: #21A5B5;
  --color-accent: #E7EAF2;
  --color-bg: #101623;
  --color-bg-card: #172742;
  --color-bg-section: #132040;
  --color-white: #f4f6fa;
  --color-black: #132040;
  --color-shadow: 0 6px 32px 0 rgba(24, 194, 231, 0.13);
  --color-shadow-strong: 0 4px 24px 0 rgba(21,165,181,.24);
  --color-neon: #16ede6;
  --color-error: #ff2048;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* GLOBAL TYPOGRAPHY ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: #e0f7fa;
  letter-spacing: .5px;
}
h1 { font-size: 2.5rem; line-height: 1.17; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.33rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.1rem; line-height: 1.25; }

p, li, span, a, button, input, textarea {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #f4f6fa;
}
p { margin-bottom: 12px; }
strong { font-weight: 600; }

.subheadline {
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: #e7eaf2;
  margin-bottom: 22px;
  font-weight: 400;
}

/* LAYOUT STRUCTURE ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--border-radius);
  box-shadow: var(--color-shadow);
}

/* HEADER & NAVIGATION -------------------------------------------------- */
header {
  background: var(--color-bg-card);
  box-shadow: 0 2px 16px 0 rgba(24,50,91,0.05);
  z-index: 999;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 0;
}
.logo-link img {
  max-height: 42px;
  width: auto;
  transition: filter var(--transition);
  filter: drop-shadow(0 0 8px #16ede6cc);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #e0f7fa;
  text-shadow: 0 0 2px #16ede6;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: #16ede630;
  color: #16ede6;
}
.main-nav .cta-primary {
  background: var(--color-secondary);
  color: #111d32;
  font-weight: 700;
  letter-spacing: .3px;
  text-shadow: none;
  border-radius: var(--border-radius);
  box-shadow: 0 0 8px #16ede635;
  transition: background var(--transition), box-shadow var(--transition), color .16s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #16ede6;
  color: #102942;
  box-shadow: 0 0 16px #16ede670;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #16ede6;
  background: transparent;
  border: none;
  position: relative;
  transition: color var(--transition);
  z-index: 1101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #16ede6;
}

/* MOBILE MENU ----------------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 50, 91, 0.96);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.4,0,.2,1);
  z-index: 1200;
  box-shadow: 0 0 50px #101623cc;
  padding: 0 0 48px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 28px 24px 0;
  font-size: 2.4rem;
  color: #16ede6;
  background: transparent;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #16ede620;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin-left: 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #e0f7fa;
  font-weight: 600;
  padding: 12px 0 12px 0;
  border-radius: 0;
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #16ede6;
  text-shadow: 0 0 4px #16ede6;
}
.mobile-nav .cta-primary {
  background: var(--color-secondary);
  color: #132040;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  margin-top: 24px;
  text-shadow: none;
}

/* HERO & SECTION STYLES ------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(110deg, #19325B 10%, #21A5B5 90%);
  color: #e0f7fa;
  min-height: 320px;
  box-shadow: 0 8px 40px 0 #16ede615;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  margin-bottom: 48px;
  padding: 48px 0 48px 0;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 28px;
  align-items: flex-start;
}
.hero h1 {
  color: #fafdfe;
  font-size: 2.8rem;
  text-shadow: 0 2px 36px #16ede6, 0 0 2px #16ede6;
}
.hero p {
  color: #E7EAF2;
  max-width: 500px;
}

/* FEATURES SECTION (shared and home) ------------------------------------- */
.features ul, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid li, .features ul li {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 4px 24px #21A5B533;
  padding: 30px 20px 22px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid li:hover, .features ul li:hover {
  box-shadow: 0 8px 36px #16ede6cc, 0 0 12px #19325B50;
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img, .features ul img {
  height: 44px;
  width: 44px;
  filter: drop-shadow(0 0 8px #21A5B5cc) brightness(1.15);
  margin-bottom:8px;
}
.features h3 {
  color: #16ede6;
  font-weight: 900;
  font-size: 1.18rem;
  margin-bottom: 0;
}
.features p {
  color: #e7eaf2;
  font-size: 1rem;
}

/* SERVICE CARDS & LIST --------------------------------------------------- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--color-bg-card);
  color: #f6faff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 30px #16ede624;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 330px;
  position: relative;
  border: 1.5px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 40px #16ede694, 0 1px 8px #13204022;
  border-color: #16ede6;
  transform: translateY(-6px) scale(1.0375);
  z-index: 1;
}
.service-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px #16ede688);
}
.service-card h3 {
  color: #16ede6;
  font-size: 1.21rem;
  margin-bottom: 0.4rem;
}
.service-card .price {
  font-weight: 700;
  color: #e0f7fa;
  margin-top: 6px;
  background: #16ede616;
  border-radius: var(--border-radius-sm);
  padding: 4px 10px;
  font-size: 1rem;
}

/* CASE STUDIES / ARTICLE GRID -------------------------------------------- */
.case-study-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study, .article {
  background: var(--color-bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--color-shadow);
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  max-width: 360px;
  min-width: 220px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-study:hover, .article:hover {
  box-shadow: 0 4px 32px #16ede6cc, 0 0 8px #21A5B555;
  transform: scale(1.024);
}
.article h3 {
  font-size: 1.1rem;
}
.article a {
  margin-top: 14px;
  color: #16ede6;
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition);
}
.article a:hover {
  color: #21a5b5;
}

/* TESTIMONIALS ----------------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f4f6fa;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 28px #21A5B533;
  flex-direction: column;
  color: #132040;
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 8px 42px #21A5B588;
  background: #ffffff;
}
.testimonials .testimonial-card p {
  color: #132040;
  font-size: 1.04rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonials .testimonial-meta {
  font-size: 0.98rem;
  color: #172742;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 2px;
}
.testimonials h2 {
  color: #21A5B5;
}

/* CTA SECTIONS ----------------------------------------------------------- */
.cta-highlight, .cta-section {
  background: linear-gradient(100deg, #21A5B5 30%, #19325B 95%);
  border-radius: var(--border-radius);
  color: #fafdfe;
  box-shadow: 0 4px 28px #19325B55;
  margin-bottom: 60px;
}
.cta-highlight .content-wrapper, .cta-section .content-wrapper {
  align-items: flex-start;
}
.cta-highlight h2, .cta-section h2 {
  color: #fafdfe;
  font-size: 2rem;
  text-shadow: 0 0 12px #16ede633, 0 0 1px #000;
}
.cta-highlight p, .cta-section p {
  color: #e6f6fe;
}

/* BUTTONS & CTA ---------------------------------------------------------- */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: var(--border-radius);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 18px 0 #16ede660;
  background: var(--color-secondary);
  color: #111d32;
  letter-spacing: .2px;
  position: relative;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-shadow: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #16ede6;
  color: #19325B;
  box-shadow: 0 2px 32px #16ede6cc, 0 0 12px #21A5B580;
  transform: translateY(-2px) scale(1.032);
}
.cta-secondary {
  background: transparent;
  color: #16ede6;
  border: 2px solid #16ede6;
  box-shadow: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #16ede620;
  color: #fafdfe;
}

/* TEXT SECTIONS & INFO --------------------------------------------------- */
.text-section {
  background: transparent;
  color: #e0f7fa;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.text-section ul, .text-section ol {
  margin-bottom: 8px;
  margin-left: 20px;
  color: #e0f7fa;
  list-style: disc inside;
}
.text-section li {
  margin-bottom: 7px;
  line-height: 1.55;
}
.contact-details ul li {
  color: #21A5B5;
  font-weight: 500;
}

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: var(--color-bg-card);
  color: #E7EAF2;
  border-top: 2px solid #21a5b515;
  padding: 0;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 46px 0 22px 0;
  border-bottom: 1px solid #21a5b528;
}
.footer-info {
  flex: 1 1 210px;
  color: #E7EAF2;
  font-size: 0.98rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #16ede6;
  font-size: 0.98rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #e7eaf2;
}
.footer-bottom {
  text-align: center;
  padding: 15px 0 22px 0;
  font-size: 0.93rem;
  color: #8da0c1;
}

/* LEGAL PAGES ---------------------------------------------------------- */
.legal .container {
  padding: 32px 14px;
}
.legal .text-section {
  color: #E7EAF2;
  background: transparent;
  margin: 0 0 10px 0;
}
.legal h1, .legal h2 {
  color: #16ede6;
}
.legal ul {
  color: #e0f7fa;
  font-size: 1rem;
}

/* FAQ ACCORDION ---------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.faq-item {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--color-shadow);
  padding: 20px 20px 12px 20px;
  transition: box-shadow var(--transition);
}
.faq-item h3 {
  font-size: 1.02rem;
  color: #21A5B5;
  cursor: pointer;
  user-select: none;
}
.faq-answer {
  color: #E7EAF2;
  margin-top: 9px;
  font-size: 0.98rem;
  transition: max-height 0.35s, margin-top 0.2s;
}

/* Cookie Consent Banner -------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #172742dc;
  color: #e7eaf2;
  z-index: 1300;
  padding: 20px 20px 16px 20px;
  box-shadow: 0 -6px 32px #19325B33;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cookieSlideIn 0.7s;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #E7EAF2;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #16ede6;
  color: #132040;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--border-radius-sm);
  transition: background var(--transition), color var(--transition);
  border: none;
  margin-right: 2px;
  font-size: 1rem;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #21a5b5;
  color: #fafdfe;
}
.cookie-btn.secondary {
  background: #132040;
  color: #16ede6;
  border: 2px solid #16ede6;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #16ede6cc;
  color: #132040;
}

/* Cookie Modal ----------------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #19325B;
  color: #E7EAF2;
  padding: 36px 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px #132040e0;
  z-index: 1350;
  width: 98vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s, transform 0.36s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.46rem;
  color: #16ede6;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #e7eaf2;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 9px;
  background: #111d32;
  border: 1px solid #16ede6;
  position: relative;
  margin-left: 14px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle:hover {
  background: #16ede610;
}
.cookie-toggle::before {
  content:'';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #21A5B5;
  border-radius: 50%;
  transition: left var(--transition), background var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle::before {
  left: 16px;
  background: #16ede6;
}
.cookie-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: transparent;
  color: #16ede6;
  font-size: 2rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #16ede620;
  outline: none;
}

/* UTILITY CLASSES ------------------------------------------------------ */
.hide-mobile { display: inherit; }
@media (max-width: 990px) {
  .footer-top { flex-direction: column; gap: 22px; }
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
    max-width: 100vw;
  }
  .hero {
    min-height: 260px;
    padding: 28px 0 34px 0;
  }
  .content-wrapper {
    gap: 24px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .service-list, .feature-grid, .article-list, .case-study-list {
    gap: 16px;
  }
  .service-card, .case-study, .article, .feature-grid li, .features ul li {
    min-width: 160px;
    max-width: none;
    flex-basis: 90vw;
    padding: 20px 12px;
  }
  .testimonials .testimonial-card {
    padding: 16px 10px;
    font-size: 0.99rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 18px;
    padding: 26px 0 17px 0;
  }
  .footer-bottom {
    padding: 8px 0 10px 0;
    font-size: 0.91rem;
  }
  .legal .container { padding: 16px 7px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.08rem; margin-bottom: 12px; }
  .cta-primary, .cta-secondary { font-size: 1rem; padding: 10px 14px; }
  .footer-info { font-size: 0.93rem; }
  .features ul, .feature-grid { flex-direction: column; gap: 12px; }
  .service-list, .case-study-list, .article-list { flex-direction: column; gap: 12px; }
}

/* FLEXBOX PATTERNS ------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Additional Micro-interactions & Neon ----------------------------------- */
.cta-primary:after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 14px;
  border-radius: 50%;
  background: #16ede6;
  box-shadow: 0 0 8px #16ede6eb;
  vertical-align: middle;
  transition: background var(--transition), box-shadow var(--transition);
}
.cta-primary:hover:after {
  background: #19325B;
  box-shadow: 0 0 22px #21A5B5ee;
}

/* Input/Field/Focus Styles ---------------------------------------------- */
input, textarea, select {
  border-radius: var(--border-radius-sm);
  border: 1.5px solid #21a5b5;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 9px 12px;
  background: #132040;
  color: #f4f6fa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #16ede6;
  box-shadow: 0 0 8px #16ede6cc;
}

::-webkit-input-placeholder { color:#8da0c1; opacity:1; }
::-moz-placeholder { color:#8da0c1; opacity:1; }
:-ms-input-placeholder { color:#8da0c1; opacity:1; }
::placeholder { color:#8da0c1; opacity:1; }

/* Scrollbar Styling ----------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  background: #172742;
}
::-webkit-scrollbar-thumb {
  background: #21a5b5aa;
  border-radius: 8px;
}

/* Accessibility: High Contrast for testimonials -------------------------- */
.testimonials .testimonial-card, .testimonials .testimonial-meta, .testimonials .testimonial-card p {
  color:#132040 !important;
  background: #f4f6fa !important;
}

/* Prevent Content Overlapping ------------------------------------------- */
.section, .card, .service-card, .case-study, .faq-item, .feature-grid li, .article, .testimonial-card {
  margin-bottom: 24px;
}

/* Z-index hints for overlays -------------------------------------------- */
.mobile-menu {
  z-index: 1200;
}
.cookie-banner {
  z-index: 1300;
}
.cookie-modal {
  z-index: 1350;
}

/* End of Aqua Surge tech_futuristic CSS */
