/* === 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #232741;
  color: #F6F8FA;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* === BRAND FONTS (Montserrat, Open Sans) === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

body, input, textarea, select, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: none;
  color: #F6F8FA;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.15;
  color: #F6F8FA;
  margin-bottom: 12px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; }

p, li, address, blockquote {
  font-size: 1.06rem;
  color: #F6F8FA;
}
strong {
  font-weight: 700;
  color: #FFDB5B;
}


/* === GLOBAL CONTAINER & SPACING === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

/* === TECH FUTURISTIC ATMOSPHERE === */
body {
  background: linear-gradient(112deg, #22273F 0%, #31506B 100%);
}
section {
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(37,90,164,0.08), 0 1.5px 16px 0 rgba(49,80,107,0.13);
  background: rgba(33,39,56,0.86);
}

/* Accent line or glow below headings */
section > .container > h1, section > .container > h2, .section > .container > h2, .section > .container > h1 {
  position: relative;
  margin-bottom: 24px;
}
section > .container > h1::after, section > .container > h2::after {
  content: '';
  display: block;
  width: 74px;
  height: 4px;
  background: linear-gradient(90deg, #00e6d2, #FF7ED6 70%);
  border-radius: 3px;
  margin-top: 8px;
  margin-left: 0;
}

/* Typography: visual hierarchy */
@media (max-width: 600px) {
 h1 { font-size: 1.6rem; }
 h2 { font-size: 1.28rem; }
 h3 { font-size: 1.07rem; }
}

/* === HEADER / NAV === */
header {
  background: #232741;
  border-bottom: 1px solid #263553;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 8px;
  position: relative;
}
header img {
  width: 170px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-size: 1.05rem;
  color: #F6F8FA;
  padding: 6px 18px;
  border-radius: 7px;
  position: relative;
  transition: color 0.22s, background 0.19s;
}
.main-nav a:after {
  content: '';
  display: block;
  position: absolute;
  left: 12px; right: 12px;
  bottom: 0; height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #00e6d2 0, #4fd2ff 100%);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.19s, transform 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #31506b80;
  color: #00e6d2;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  opacity: 1;
  transform: scaleX(1);
}
.btn.primary {
  padding: 0.82em 2.2em;
  background: linear-gradient(90deg, #00e6d2 0, #4fd2ff 100%);
  color: #0f1722;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 #00e6d288;
  transition: background 0.25s, color 0.16s, transform 0.13s;
  position: relative;
  text-shadow: 0 1px 2px #fff3;
  margin-left: 17px;
}
.btn.primary:focus-visible, .btn.primary:focus, .btn.primary:hover {
  background: linear-gradient(90deg, #FF7ED6 0, #00e6d2 100%);
  color: #0e1419;
  transform: translateY(-2px) scale(1.04);
}
/* Hide main nav and show burger on mobile */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  margin-left: 20px;
  border: none;
  color: #00e6d2;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 7px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #263553;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .btn.primary { margin-left: 0; }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #132456ee;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.7,.2,.2,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FF7ED6;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 18px 32px 10px 0px;
  align-self: flex-end;
  z-index: 2;
  margin-bottom: 8px;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #00e6d2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 7px;
  padding: 0 40px;
  margin-top: 28px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.32rem;
  padding: 17px 0 13px 0px;
  border-bottom: 1px solid #26355377;
  width: 100%;
  text-align: left;
  border-radius: 4px;
  transition: color 0.22s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00e6d2;
  background: #26355355;
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === MAIN LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  border-radius: 17px;
  background: #202b39ee;
  box-shadow: 0 4px 16px #00e6d21a;
  margin-bottom: 20px;
  padding: 1.6em 1.5em;
  min-width: 230px;
  flex: 1 1 270px;
  transition: box-shadow 0.19s, transform 0.11s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 0 0 3px #00e6d244, 0 4px 18px #FF7ED644;
  transform: translateY(-6px) scale(1.03);
}
.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: 850px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 25px;
  }
}

/* --- Features --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  padding-top: 10px;
}
.feature-grid > .feature-icon {
  flex: 0 0 54px;
  margin-bottom: 3px;
}
.feature-icon img {
  width: 54px;
  height: 54px;
}
.feature-grid > h3 {
  font-size: 1.14rem;
  color: #00e6d2;
  margin-bottom: 6px;
}
.feature-grid > p {
  margin-bottom: 7px;
  color: #f1f8fa;
  max-width: 238px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === SERVICE LIST / BENEFIT LIST === */
.service-list, .values-list, .certifications, .step-by-step, .benefit-list, .project-list, .materials-list, .design-list, .blog-post-previews, .next-steps, .blog-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li, .values-list li, .certifications li, .benefit-list li, .project-list li, .materials-list li, .design-list li, .blog-post-previews li, .next-steps li {
  padding: 20px 20px 20px 78px;
  background: #293655bb;
  border-radius: 13px;
  color: #e5f5fa;
  min-height: 70px;
  position: relative;
  box-shadow: 0 2px 8px #4fd2ff16;
  transition: box-shadow 0.14s;
}
.service-list li:hover, .values-list li:hover, .blog-post-previews li:hover, .project-list li:hover {
  box-shadow: 0 0 0 3px #00e6d244, 0 2px 10px #FF7ED638;
}
.service-list li img, .values-list li img, .certifications li img, .benefit-list li img, .project-list li img {
  position: absolute;
  left: 18px; top: 20px;
  width: 40px; height: 40px;
}

/* --- Testimonials --- */
.testimonials .content-wrapper, .client-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  margin-top: 19px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #c3c3c387;
  color: #223141;
  border-radius: 18px;
  box-shadow: 0 3px 16px #FF7ED652, 0 2px 6px #00e6d23A;
  margin-bottom: 20px;
  font-size: 1.06rem;
  min-width: 260px;
  max-width: 520px;
  font-family: 'Open Sans', Arial, sans-serif;
  border-left: 4px solid #00e6d2;
  transition: box-shadow 0.16s, border-color 0.14s;
}
.testimonial-card strong {
  font-weight: 700;
  color: #31506B;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 0 0 4px #4fd2ff67, 0 3px 18px #FF7ED661 !important;
  border-left: 4px solid #FF7ED6;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    padding: 20px 16px;
  }
}

/* --- CTA Section --- */
.cta {
  background: #00e6d20f !important;
  border: none !important;
  box-shadow: 0 4px 24px #00e6d259, 0 2px 10px #FF7ED641;
  border-radius: 20px;
  padding: 36px 0 !important;
  margin-bottom: 30px;
}
.cta h2 {
  color: #FF7ED6;
}
.cta .btn.primary {
  margin-top: 16px;
  font-size: 1.17rem;
}

/* --- About, Credentials, etc. --- */
.text-section p + p {
  margin-top: 0.7em;
}

.trust-badges, .usps {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.trust-badges img, .usps img {
  width: 52px;
  height: 52px;
}
.usps span {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #393c5755;
  padding: 7px 19px;
  border-radius: 8px;
  color: #00e6d2;
}

/* --- Address & Footer ---*/
footer {
  background: #232741;
  color: #A1C0CD;
  padding: 0;
  font-size: 1rem;
  border-top: 1px solid #263553;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 20px 17px 20px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #A1C0CD;
  font-size: 1rem;
  padding: 6px 11px;
  border-radius: 4px;
  transition: color 0.15s, background 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #263553;
  color: #00e6d2;
}
address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  color: #A1C0CD;
  font-size: 0.98rem;
}
address div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 2px;
}
address img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
  filter: brightness(1.25) contrast(1.1) grayscale(60%);
}
address a {
  color: #62efff;
  text-decoration: underline;
}
.copyright {
  margin-top: 7px;
  color: #4fd2ff;
  font-size: 0.95rem;
}

/* --- Contact Page --- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: none;
  padding: 0 !important;
  border: none !important;
  font-size: 1.05rem;
}
.contact-details li img {
  width: 27px;
  height: 27px;
}
.map img {
  width: 34px;
  height: 34px;
  margin-right: 7px;
}
.note {
  color: #FF7ED6;
  background: #00000022;
  padding: 8px 18px;
  border-radius: 8px;
  margin-top: 10px;
}
.hours-list, .address-text, .transport-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  background: #29365599;
  padding: 13px 18px;
  border-radius: 8px;
}

/* --- Thank You Page --- */
.confirmation-text p {
  margin-bottom: 0.7em;
}

/* --- Table & Lists (Legal Pages, Blog) --- */
.text-section h2 {
  margin-top: 24px;
}

/* === ANIMATIONS, MICRO-INTERACTIONS === */
.btn, .main-nav a, .mobile-nav a, .footer-nav a, .card, .testimonial-card, .usps span {
  transition: all 0.18s cubic-bezier(.22,.61,.36,1), box-shadow 0.12s;
}
.card:active, .testimonial-card:active, .btn.primary:active {
  transform: scale(1.008) translateY(-1px);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 900px) {
  .container { padding-left: 8px; padding-right: 8px; }
  section, .cta { padding: 20px 0 20px 0; }
  .footer-nav { gap: 11px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .content-wrapper { gap: 13px; }
  .footer-nav { flex-direction: column; gap: 4px; }
  section, .cta { padding: 10px 0 !important; }
  .card { min-width: 90vw; padding: 1em 1em; }
  .testimonial-card { max-width: 96vw; padding: 12px 10px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.05rem; }
  .card, .testimonial-card { font-size: 0.98rem; }
}

/* ============================
     COOKIE BANNER & MODAL
=============================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #232741e6;
  color: #fff;
  z-index: 9999;
  padding: 22px 32px 22px 24px;
  box-shadow: 0 -2px 18px #9A00E633, 0 -1.5px 8px #00e2ca33;
  font-size: 1.05rem;
  gap: 20px;
  animation: cookieBannerAppear 0.9s cubic-bezier(.6,.2,.3,1) both;
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 300px;
  margin-right: 16px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-banner .btn {
  padding: 0.68em 1.5em;
  border-radius: 22px;
  min-width: 120px;
  font-size: 0.97rem;
  cursor: pointer;
  background: #262e47;
  color: #fff;
  border: 1px solid #263553;
  transition: all 0.17s;
}
.cookie-banner .btn.accept {
  background: linear-gradient(90deg, #00e6d2 0, #4fd2ff 100%);
  color: #142642;
  border: none;
  font-weight: 700;
  box-shadow: 0 1px 9px #00e6d252;
}
.cookie-banner .btn.reject {
  background: #263553;
  color: #fff;
}
.cookie-banner .btn.settings {
  background: #FF7ED6;
  color: #223141;
  font-weight: 600;
}
.cookie-banner .btn:focus, .cookie-banner .btn:hover {
  filter: brightness(1.08) drop-shadow(0 0 7px #00e6d255);
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7vw;
    gap: 12px;
  }
  .cookie-banner .cookie-btn-group {
    width: 100%; gap: 11px;
  }
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #222F4CB1;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.29s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #232741;
  border: 2px solid #00e6d2;
  border-radius: 18px;
  box-shadow: 0 8px 36px #00e6d244, 0 2px 9px #FF7ED633;
  width: 98vw;
  max-width: 410px;
  padding: 30px 26px 22px 26px;
  color: #fff;
  animation: cookieModalAppear 0.52s cubic-bezier(.55,.2,.27,1) both;
}
@keyframes cookieModalAppear {
  0% { transform: scale(0.91) translateY(80px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: #00e6d2;
  margin-bottom: 19px;
  font-size: 1.21rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  background: #293655dd;
  border-radius: 10px;
  padding: 11px 14px;
  color: #CFEDFA;
  font-size: 1.04rem;
  transition: background 0.13s;
}
.cookie-toggle input[type=checkbox] {
  appearance: none;
  width: 27px; height: 15px;
  background: #263553;
  border-radius: 9px;
  position: relative;
  transition: background 0.17s;
  margin-right: 8px;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox]:checked {
  background: linear-gradient(90deg, #00e6d2 0,#2193b0 100%);
}
.cookie-toggle input[type=checkbox]:after {
  content: '';
  position: absolute;
  left: 1.5px; top: 1.5px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
}
.cookie-toggle input[type=checkbox]:checked:after {
  left: 13px;
}
.cookie-toggle input[disabled] {
  filter: grayscale(0.7) opacity(0.55);
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  padding: 0.64em 1.25em;
  border-radius: 22px;
  font-size: 0.96rem;
  font-family: inherit;
  background: #263553;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal .btn.save {
  background: #00e6d2;
  color: #223141;
}
.cookie-modal .btn.cancel {
  background: #FF7ED6;
  color: #223141;
}
.cookie-modal .btn:focus, .cookie-modal .btn:hover {
  filter: brightness(1.08);
}

/* ---- HIDE/SHOW BANNER & MODAL ---- */
.cookie-banner[hidden] { display: none !important; }
.cookie-modal-overlay[hidden] { display: none !important; }

/* ---- Accessibility ---- */
:focus-visible {
  outline: 2px solid #00e6d2;
  outline-offset: 2px;
}

/* ============= CUSTOM NEON EFFECTS & FUTURISTIC DECOR ========== */
h1, h2, h3, h4 {
  text-shadow: 0 2px 14px #00e6d277, 0 0 6px #23272f, 0 1px 0 #0a252e77;
}

.btn.primary, .main-nav a, .footer-nav a, .mobile-nav a {
  box-shadow: 0 1px 8px #00e6d244;
}

.card, .testimonial-card, .service-list li, .values-list li, .benefit-list li {
  box-shadow: 0 0 0 0 #00e6d277, 0 2px 13px #6fffed0a;
  border: 1.5px solid #202944;
}
.card:hover, .testimonial-card:hover, .service-list li:hover, .benefit-list li:hover {
  box-shadow: 0 0 10px #00e6d2bd, 0 1.5px 17px #FF7ED6aa;
  border-color: #00e6d2aa;
}

/* === End of CSS === */
