/* ===== CSS RESET / NORMALIZE ===== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.6;
  background: #101F1A;
  color: #F7F3E8;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #70f5c8;
  text-decoration: none;
  transition: color 0.23s;
}
a:hover, a:focus {
  color: #B8E3C1;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #F7F3E8;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, li {
  font-size: 1rem;
  color: #E9E8E1;
  margin-bottom: 12px;
}
strong { color: #B8E3C1; font-weight: 700; }
subheadline, .subheadline {
  font-size: 1.25rem;
  color: #B8E3C1;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 24px;
}

/* ==== COLORS ==== */
:root {
  --primary: #204A3C;
  --secondary: #B8E3C1;
  --accent: #F7F3E8;
  --bg-dark: #101F1A;
  --bg-light: #183026;
  --neon: #70f5c8;
  --error: #f36363;
  --shadow: rgba(32, 74, 60, 0.13);
  --shadow-strong: rgba(32,74,60, 0.24);
  --transition: 0.26s cubic-bezier(.6, .2, .4, .99);
  --radius: 18px;
  --radius-sm: 10px;
}

/* ==== GLOBAL CONTAINERS & LAYOUTS ==== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px var(--shadow);
}

/* ==== FLEXBOX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 24px var(--shadow);
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px var(--shadow-strong);
}
.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;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--shadow-strong);
  color: #22242a;
  min-width: 256px;
  max-width: 420px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--shadow-strong);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card strong { color: var(--primary); }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER ==== */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 1px 14px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 44;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 40px;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 78px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--accent);
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 6px var(--shadow);
}

/* ==== BUTTONS ==== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 0 16px 0 rgba(112,245,200,0.26);
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary {
  background: linear-gradient(90deg, #70f5c8 0%, #48a282 92%);
  color: #092017;
  border: 2px solid #70f5c8;
  box-shadow: 0 0 12px #70f5c8a0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B8E3C1;
  color: #183026;
  border-color: #48a282;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 22px #b8e3c13c;
}
.btn-secondary {
  background: transparent;
  color: #70f5c8;
  border: 2px solid #70f5c8;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #183026;
  color: #B8E3C1;
  border-color: #B8E3C1;
  box-shadow: 0 0 10px #204A3C50;
  transform: translateY(-2px) scale(1.01);
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(120deg, #204A3C 60%, #48a282 180%);
  padding: 70px 0 56px 0;
  color: var(--accent);
  min-height: 340px;
  margin-bottom: 48px;
}
.hero h1, .hero .subheadline {
  color: var(--accent);
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  background: rgba(32, 74, 60, 0.05);
  border-radius: var(--radius);
  padding: 24px 20px;
}

/* ==== FEATURES ==== */
.features-grid, .services-preview, .services-list, .projects-showcase, .articles-list, .faq-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}

.feature-block {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--shadow);
  padding: 30px 26px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-left: 4px solid #70f5c8;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-block:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 36px var(--shadow-strong);
  transform: translateY(-4px) scale(1.02);
}
.feature-block img {
  height: 42px;
  width: auto;
}

/* ==== SERVICE CARDS/LIST ==== */
.services-preview {
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 318px;
  box-shadow: 0 2px 16px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-bottom: 3px solid #70f5c8;
}
.service-card:hover {
  box-shadow: 0 6px 28px var(--shadow-strong);
  transform: translateY(-4px) scale(1.016);
}
.service-price {
  color: var(--neon);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 3px;
}
.services-list {
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.service-detail {
  background: var(--bg-light);
  border-left: 4px solid #70f5c8;
  padding: 28px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
}
.service-detail h3 {
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-detail .service-price {
  color: var(--neon);
}
.service-detail:hover {
  box-shadow: 0 8px 32px var(--shadow-strong);
  border-color: var(--secondary);
}

/* ==== CTA SECTION ==== */
.cta {
  background: linear-gradient(90deg, #204A3C 70%, #B8E3C1 140%);
}
.cta h2, .cta p { color: var(--accent); }
.cta a.btn-primary {
  margin: 24px 0 0 0;
  box-shadow: 0 0 22px #204A3C80;
  background: linear-gradient(90deg, #70f5c8 0%, #B8E3C1 100%);
}

/* ==== TEXT SECTIONS ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul, .text-section ol {
  margin-left: 20px;
  margin-bottom: 10px;
  padding-left: 14px;
  color: #DCE9E0;
}
.text-section li {
  list-style: disc inside;
  margin-bottom: 6px;
  color: var(--accent);
}
.text-section strong {
  color: #70f5c8;
}

/* ==== PROJECTS SHOWCASE ==== */
.projects-showcase {
  flex-direction: column;
}
.project-description {
  padding: 28px 22px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 14px var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.project-description:hover {
  box-shadow: 0 8px 34px var(--shadow-strong);
  transform: translateY(-2px) scale(1.009);
}
.project-description h3 {
  color: var(--secondary);
  margin-bottom: 9px;
}

/* ==== ARTICLES LIST (Porady) ==== */
.articles-list {
  flex-wrap: wrap;
  gap: 22px;
}
.articles-list article, .featured-article {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow var(--transition), background var(--transition);
}
.articles-list article:hover, .featured-article:hover {
  box-shadow: 0 6px 20px var(--shadow-strong);
  background: #255e4e;
}
.featured-article {
  border: 2px solid #70f5c8;
  background: #183026;
}
.articles-list a, .featured-article a {
  color: #70f5c8;
  font-weight: bold;
  transition: text-shadow 0.1s;
}
.articles-list a:hover, .featured-article a:hover {
  text-shadow: 0 0 5px #70f5c8;
}

/* ==== FAQ LIST ==== */
.faq-list {
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--bg-light);
  border-left: 6px solid #70f5c8;
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 10px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 18px var(--shadow-strong);
}
.faq-item h3 {
  color: #B8E3C1;
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--accent);
}

/* ==== FOOTER ==== */
footer {
  background: #142a24;
  color: #accfb4;
  padding: 48px 0 10px 0;
  box-shadow: 0 -3px 16px var(--shadow-strong);
}
footer .container {
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 0 0;
  flex: 2;
  min-width: 200px;
}
.footer-nav a {
  color: #eafaf2;
  font-size: 1rem;
  padding: 2px 10px;
  transition: color var(--transition), text-shadow var(--transition);
}
.footer-nav a:hover {
  color: #B8E3C1;
  text-shadow: 0 0 7px #70f5c84c;
}
.footer-contact {
  flex: 1.5;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-social {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: center;
  min-width: 90px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  background: #183026;
  padding: 8px;
  transition: box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 8px #204A3C70;
}
.footer-social a:hover {
  background: #70f5c8;
  box-shadow: 0 4px 20px #70f5c8ad;
}
.footer-social img {
  height: 22px;
  filter: grayscale(0.35) brightness(1.1);
  transition: filter var(--transition);
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1.25) drop-shadow(0 0 5px #eafffc);
}
.footer-copy {
  font-size: 0.97rem;
  color: #7ebfab;
  margin-top: 32px;
  flex-basis: 100%;
}

/* === MAP === */
.map-placeholder {
  background: #255e4e;
  border-radius: var(--radius-sm);
  color: #c8eddb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 120px;
  padding: 16px;
  margin-left: 15px;
  font-size: 1rem;
}

/* ==== LEGAL PAGES SECTIONS ==== */
.legal-text {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 20px 28px 26px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.06rem;
}
.legal-text h2 {
  color: #B8E3C1;
  margin: 18px 0 12px 0;
  font-size: 1.24rem;
}
.legal-text ul, .legal-text ol {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 10px;
}
.legal-text li {
  margin-bottom: 7px;
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  min-height: 38vh;
  background: #183026;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-message {
  color: #B8E3C1;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #70f5c8;
  cursor: pointer;
  margin-left: 20px;
  z-index: 52;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #B8E3C1;
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: linear-gradient(120deg, #204A3C 75%, #183026 100%);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.84,0,.36,1);
  z-index: 1000;
  box-shadow: 0 0 64px #101F1Aee;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #70f5c8;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 26px 28px 6px 0;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B8E3C1;
  transform: scale(1.1) rotate(-90deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 92%;
  align-items: flex-start;
  margin-top: 22px;
  margin-left: 28px;
}
.mobile-nav a {
  color: #F7F3E8;
  font-size: 1.25rem;
  padding: 12px 5px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #70f5c8;
  color: #183026;
}
@media (max-width: 1024px) {
  .main-nav a {
    padding: 6px 13px;
    font-size: 0.97rem;
  }
  header .container {
    padding-left: 5px; padding-right: 5px;
  }
}
@media (max-width: 890px) {
  footer .container {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
}
@media (max-width: 768px) {
  .hero { padding: 44px 0 32px 0; min-height: 220px; }
  .section { padding: 28px 7px; margin-bottom: 46px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.18rem; }
  .content-grid, .features-grid, .services-preview, .projects-showcase, .articles-list, .faq-list,
   .footer-nav, .testimonal-slider, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .testimonal-card { min-width: unset; max-width: unset;}
  .service-card, .project-description, .feature-block, .service-detail, .testimonial-card, .faq-item {
    min-width: 0; max-width: unset;
    padding: 20px 10px;
  }
  footer .container {
    padding: 0 5px;
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .hero .content-wrapper { padding: 13px 4px; }
  .footer-social { justify-content: flex-start; }
  .footer-brand, .footer-nav, .footer-contact, .footer-social {
    min-width: unset;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 420px) {
  h1, h2 { font-size: 1rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 12px; min-width: 120px; }
}

/* ========== TESTIMONIAL SLIDER (basic horizontal scroll) ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.testimonial-slider .testimonial-card {
  scroll-snap-align: start;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #183026;
  color: #F7F3E8;
  padding: 24px 16px 24px 14px;
  box-shadow: 0 -6px 32px #0a1911e6;
  z-index: 2222;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  transition: transform 0.38s var(--transition), opacity 0.28s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-title {
  font-weight: bold;
  color: #B8E3C1;
  margin-bottom: 7px;
  font-size: 1.1rem;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 18px;
}
.cookie-consent-banner button {
  padding: 9px 26px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  margin-right: 5px;
  font-weight: 700;
  background: #70f5c8;
  color: #03341a;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px #70f5c860;
}
.cookie-consent-banner button:focus, .cookie-consent-banner button:hover {
  background: #B8E3C1;
  color: #101F1A;
  box-shadow: 0 4px 24px #70f5c8c6;
}
.cookie-consent-banner .btn-settings {
  background: transparent;
  color: #70f5c8;
  border: 2px solid #70f5c8;
}
.cookie-consent-banner .btn-settings:hover {
  background: #335549;
  color: #B8E3C1;
  border-color: #B8E3C1;
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 48, 38, 0.77);
  z-index: 2224;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--accent);
  color: #101F1A;
  border-radius: var(--radius);
  min-width: 92vw; max-width: 380px;
  padding: 38px 20px 24px 32px;
  box-shadow: 0 2px 36px #204A3C99;
  position: relative;
  animation: modal-slidein 0.45s cubic-bezier(.86,.04,.36,1);
}
@keyframes modal-slidein {
  from { transform: translateY(80px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  font-size: 1rem;
  display: flex; flex-direction: row; align-items: center; gap: 14px;
}
.cookie-modal .category-label {
  font-weight: 700;
  color: #204A3C;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 21px;
  background: #e9fced;
  position: relative;
  border-radius: 11px;
  transition: background 0.22s;
  margin-left: 16px;
  border: 1px solid #B8E3C1;
  cursor: pointer;
}
.cookie-modal .cookie-toggle-label {
  position: absolute;
  top: 0; left: 0;
  width: 38px; height: 21px;
  pointer-events: none;
}
.cookie-modal .cookie-toggle-input {
  opacity: 0; width: 38px; height: 21px; margin: 0; padding: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 1px; top: 1px;
  width: 18px; height: 18px;
  background: #70f5c8;
  border-radius: 50%;
  transition: left 0.22s, background 0.22s;
}
.cookie-modal .cookie-toggle-input:checked ~ .toggle-slider {
  left: 19px;
  background: #48a282;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal .cookie-confirm-btn {
  background: #70f5c8;
  color: #03341a;
  border-radius: var(--radius-sm);
  border: none;
  padding: 10px 33px;
  font-size: 1.01rem;
  font-weight: 700;
  box-shadow: 0 2px 10px #70f5c860;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .cookie-confirm-btn:hover, .cookie-modal .cookie-confirm-btn:focus {
  background: #204A3C;
  color: var(--accent);
}
.cookie-modal .cookie-cancel-btn {
  background: transparent;
  color: #204A3C;
  border: 2px solid #70f5c8;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .cookie-cancel-btn:hover, .cookie-modal .cookie-cancel-btn:focus {
  background: #B8E3C1;
  color: #101F1A;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px; top: 14px;
  background: transparent;
  color: #70f5c8;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus { color: #48a282; transform: scale(1.19); }

@media (max-width: 540px) {
  .cookie-modal {
    min-width: 78vw;
    padding: 28px 6px 18px 11px;
  }
}

/* ==== SPACING AND HIERARCHY ENFORCEMENT (MANDATORY) ==== */
.section, .feature-block, .service-card, .service-detail, .project-description, .testimonial-card, .faq-item,
.articles-list article, .featured-article, .legal-text {
  margin-bottom: 20px;
}
.card-container, .content-grid, .features-grid, .articles-list, .faq-list, .projects-showcase,
.services-preview, .footer-nav, .testimonial-slider, .contact-details {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* === VISUAL MICRO-ACCENTS (NEON EFFECTS) ==== */
.btn-primary, .main-nav a.btn-primary, .footer-social a:hover {
  text-shadow: 0 0 8px #47ffe8a9, 0 0 16px #70f5c88b;
  box-shadow: 0 0 12px #70f5c8b2;
}
.feature-block, .service-card, .testimonial-card, .service-detail, .faq-item, .legal-text, .project-description {
  border-left: 4px solid #70f5c8;
}

/* ==== TYPOGRAPHY HIERARCHY ==== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
@media (max-width:768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
}

/* ==== ANIMATIONS ==== */
.btn-primary, .btn-secondary, .footer-social a, .feature-block, .service-card, .testimonial-card, .service-detail, .faq-item,
.article-list article, .featured-article, .project-description {
  transition: box-shadow 0.18s, background 0.17s, transform 0.19s, color var(--transition);
}

/* ==== FOCUS STATES ==== */
.btn-primary:focus, .btn-secondary:focus, .main-nav a:focus, .footer-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid #70f5c8;
  outline-offset: 2px;
}

/* ==== NO ABSOLUTE POSITIONING FOR CONTENT ==== */
.card, .testimonial-card, .project-description, .service-card, .feature-block, .section {
  position: relative;
}

/* ==== PREVENT OVERLAP & ENSURE ADEQUATE SPACING ==== */
.card, .testimonial-card, .feature-block, .service-card, .service-detail,
.project-description, .faq-item, .articles-list article, .featured-article {
  margin-bottom: 20px;
}

/* ==== Z-INDEX LAYERING (ensure overlays and menus are on top) ==== */
.mobile-menu { z-index: 1000; }
.cookie-consent-banner { z-index: 2222; }
.cookie-modal-overlay { z-index: 2224; }
header { z-index: 44; }

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