/*
Theme Name: Vandværk X Tema
Theme URI: https://example.dk
Author: Vendelbo Toft IT
Description: Moderne WordPress-tema til vandværker med animeret header.
Version: 1.0
Text Domain: vandvaerk-tema
*/

:root {
  --blaa: #0a3d62;        /* Mørk blå - primær */
  --blaa-lys: #1a6fa8;    /* Mellem blå - sekundær */
  --turkis: #48b1bf;      /* Turkis - accent */
  --orange: #2196F3;      /* Lys blå - CTA knapper */
  --graa: #f0f7fc;        /* Lys blå-grå baggrund */
  --tekst: #1c1c1c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--tekst);
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.site-branding a {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blaa);
}

.main-navigation ul {
  display: flex;
  gap: 28px;
}

.main-navigation a {
  font-weight: 500;
  color: var(--tekst);
  transition: color .2s;
}

.main-navigation a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-akut {
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform .2s;
}
.btn-akut:hover { transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  padding: 100px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, var(--blaa) 0%, var(--blaa-lys) 45%, var(--turkis) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero.has-video .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 14px; }

.btn-primary {
  background: #fff;
  color: var(--blaa);
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
}

/* Info-kort */
.info-cards {
  position: relative;
  z-index: 3;
  margin: -70px 40px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--graa);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.info-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.info-card p { font-size: 0.9rem; color: #555; margin-bottom: 12px; }
.info-card .arrow { color: var(--orange); font-weight: 700; }

.status-dot {
  width: 10px; height: 10px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
}

/* ---------- NYHEDER ---------- */
.news-section {
  text-align: center;
  padding: 60px 40px 100px;
}

.news-section h2 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.news-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card .content { padding: 18px; }
.news-card .date { color: var(--orange); font-size: 0.8rem; font-weight: 700; }

@media (max-width: 1200px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  .info-cards { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .site-header { flex-wrap: wrap; gap: 12px; }
}

@media (max-width: 768px) {
  .hide-on-mobile video { display: none; }
  .hide-on-mobile {
    background-size: cover;
    background-position: center;
  }
}

/* ==========================================================
   SINGLE POST
   ========================================================== */
.single-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blaa);
}

.single-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,61,98,0.85) 0%, rgba(10,61,98,0.2) 100%);
}

.single-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: #fff;
  max-width: 800px;
}

.single-date {
  background: var(--orange);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.single-hero-content h1 {
  font-size: 2.2rem;
  margin: 16px 0 0;
  text-transform: uppercase;
}

.single-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.single-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.single-content h2,
.single-content h3 { color: var(--blaa); margin-top: 40px; }

.single-content img {
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

.single-content p { margin-bottom: 20px; }

.single-back {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.btn-outline-dark {
  display: inline-block;
  border: 2px solid var(--blaa);
  color: var(--blaa);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: all .2s;
}

.btn-outline-dark:hover {
  background: var(--blaa);
  color: #fff;
}

/* ==========================================================
   PAGE
   ========================================================== */
.page-hero {
  background: linear-gradient(120deg, var(--blaa) 0%, var(--blaa-lys) 45%, var(--turkis) 100%);
  padding: 60px 40px;
  text-align: center;
}

.page-hero-inner h1 {
  color: #fff;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin: 0;
}

.page-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.page-content h2,
.page-content h3 { color: var(--blaa); margin-top: 35px; }

.page-content img {
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

.page-content p { margin-bottom: 20px; }

@media (max-width: 600px) {
  .single-hero { height: 280px; }
  .single-hero-content h1 { font-size: 1.6rem; }
  .page-hero-inner h1 { font-size: 1.8rem; }
}

/* ==========================================================
   MOBILMENU
   ========================================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--blaa);
  border-radius: 2px;
  transition: all .3s;
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right .3s ease;
    z-index: 1000;
  }

  .main-navigation.is-open { right: 0; }

  .main-navigation ul { flex-direction: column; gap: 20px; }

  .main-navigation a {
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }

  .header-actions .btn-akut { padding: 8px 14px; font-size: 0.9rem; }
}

/* ==========================================================
   KONTAKTFORMULAR
   ========================================================== */
.contact-section {
  background: var(--graa);
  padding: 80px 40px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: var(--blaa);
  text-transform: uppercase;
  margin-top: 0;
}

.contact-details { margin-top: 30px; line-height: 2; }
.contact-details a { color: var(--blaa); font-weight: 600; }

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blaa-lys);
}

.contact-form button {
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s;
}

.contact-form button:hover { transform: translateY(-2px); }

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--blaa);
  color: #fff;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  color: var(--turkis);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 18px;
}

.footer-col ul { line-height: 2; }
.footer-col a { color: #fff; opacity: 0.85; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; color: var(--orange); }

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-info-item:last-child { margin-bottom: 0; }

.footer-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.footer-info-item > span:last-child {
  line-height: 1.5;
}

.footer-col-aabning ul li {
  white-space: nowrap;
  margin-bottom: 8px;
}

.footer-col-aabning ul li:last-child { margin-bottom: 0; }

.footer-vagt-linje {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  white-space: normal !important;
}

.footer-vagt-linje .footer-icon {
  margin-top: 0;
}

.footer-vagt-linje span:last-child {
  color: var(--turkis);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col-aabning ul li { white-space: normal; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ==========================================================
   404
   ========================================================== */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(120deg, var(--graa) 0%, #fff 100%);
}

.error-inner { max-width: 600px; }

.error-icon {
  font-size: 4rem;
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.error-404 h1 { font-size: 5rem; color: var(--blaa); margin: 0; }
.error-404 h2 { color: var(--blaa); margin-top: 0; }

.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* ==========================================================
   SØGEFELT
   ========================================================== */
.search-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.search-form button {
  background: var(--blaa);
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ==========================================================
   BREADCRUMBS
   ========================================================== */
.breadcrumbs {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.85;
}

.breadcrumbs a { color: #fff; text-decoration: underline; }
.breadcrumbs span { margin: 0 4px; }

/* ==========================================================
   PAGINATION
   ========================================================== */
.pagination, .navigation.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--graa);
  color: var(--blaa);
  font-weight: 600;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--blaa);
  color: #fff;
}

/* ==========================================================
   COOKIEBANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--blaa);
  color: #fff;
  z-index: 9999;
  padding: 20px 40px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-hide { animation: slideDown 0.4s ease forwards; }

@keyframes slideDown {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text p { margin: 6px 0 0; opacity: 0.85; font-size: 0.9rem; }
.cookie-text a { color: var(--turkis); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-banner { padding: 20px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================
   SERVICE-SEKTION
   ========================================================== */
.services-section {
  padding: 80px 40px;
  background: #fff;
}

.services-inner { max-width: 1200px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  background: var(--graa);
  color: var(--blaa);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--blaa);
  margin: 0 0 12px;
}

.section-header p { color: #666; font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.service-card h3 { color: var(--blaa); margin: 0 0 10px; font-size: 1.1rem; }
.service-card p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.service-card ul { margin-bottom: 20px; }
.service-card ul li { font-size: 0.9rem; color: #555; padding: 4px 0; }

.service-link {
  color: var(--blaa-lys);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color .2s;
}
.service-link:hover { color: var(--orange); }

/* ==========================================================
   GOOGLE MAPS FOOTER
   ========================================================== */
.footer-map { width: 100%; overflow: hidden; line-height: 0; }

.footer-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  filter: grayscale(30%);
  transition: filter .3s;
}

.footer-map iframe:hover { filter: grayscale(0%); }

/* ==========================================================
   SOCIALE MEDIER I FOOTER
   ========================================================== */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  transition: background .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding: 60px 20px; }
}

/* ==========================================================
   DROPDOWN MENU
   ========================================================== */
.main-navigation ul li { position: relative; }

.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  border-radius: 10px;
  padding: 8px 0;
  z-index: 9999;
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li:hover > ul { display: flex; }

.main-navigation ul ul li { width: 100%; }

.main-navigation ul ul a {
  display: block;
  padding: 10px 20px;
  color: var(--tekst);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.main-navigation ul ul a:hover {
  background: var(--graa);
  color: var(--orange);
}

.main-navigation ul li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.75rem;
  opacity: 0.7;
}

.main-navigation ul ul::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 4px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .main-navigation ul ul {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    background: transparent;
    display: none;
  }

  .main-navigation ul li.menu-item-has-children.is-open > ul { display: flex; }

  .main-navigation ul ul a {
    padding: 8px 0;
    border-bottom: none;
    font-size: 1rem;
    color: var(--blaa-lys);
  }

  .main-navigation ul ul::before { display: none; }

  .main-navigation ul li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .main-navigation ul li.menu-item-has-children > a::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
  }

  .main-navigation ul li.menu-item-has-children.is-open > a::after {
    content: '−';
  }
}

/* ==========================================================
   GOOGLE MAPS I KONTAKTSEKTION
   ========================================================== */
.contact-map {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1 / 1;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; }

@media (max-width: 800px) {
  .contact-map { max-width: none; }
}

.footer-menu ul { display: none; }

/* ==========================================================
   YDELSER OVERSIGT
   ========================================================== */
.ydelser-section {
  padding: 80px 40px;
  background: var(--graa);
}

.ydelser-inner { max-width: 1200px; margin: 0 auto; }

.ydelser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ydelse-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
  color: var(--tekst);
}

.ydelse-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.ydelse-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--blaa);
}

.ydelse-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,61,98,0.4);
}

.ydelse-card-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 2rem;
  z-index: 2;
}

.ydelse-card-content { padding: 24px; }

.ydelse-card-content h3 { color: var(--blaa); margin: 0 0 10px; font-size: 1.2rem; }
.ydelse-card-content p { color: #666; font-size: 0.95rem; line-height: 1.6; margin-bottom: 14px; }
.ydelse-card-content ul { margin-bottom: 18px; }
.ydelse-card-content ul li { font-size: 0.9rem; color: #555; padding: 3px 0; }

.ydelse-link { color: var(--orange); font-weight: 700; font-size: 0.95rem; }

/* CTA sektion */
.cta-section {
  background: linear-gradient(120deg, var(--blaa) 0%, var(--blaa-lys) 50%, var(--turkis) 100%);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
}

.cta-inner h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: 14px; }
.cta-inner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; }

/* ==========================================================
   ENKELT YDELSE
   ========================================================== */
.ydelse-enkelt-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.ydelse-content { font-size: 1.05rem; line-height: 1.7; color: #333; }

.ydelse-features {
  background: var(--graa);
  border-radius: 14px;
  padding: 28px;
  margin-top: 40px;
}

.ydelse-features h3 { color: var(--blaa); margin-top: 0; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.feature-icon { color: #2ecc71; font-weight: 700; font-size: 1.1rem; }

.ydelse-sidebar {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.sidebar-card h3 { color: var(--blaa); margin-top: 0; }

.sidebar-akut {
  background: linear-gradient(135deg, var(--blaa), var(--blaa-lys));
  color: #fff;
}

.sidebar-akut h3 { color: #fff; }
.sidebar-akut p { opacity: 0.9; }

/* ==========================================================
   OM OS
   ========================================================== */
.om-os-intro { padding: 80px 40px; }

.om-os-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.om-os-tekst h2 {
  color: var(--blaa);
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 10px;
}

.om-os-tekst p { color: #555; line-height: 1.7; margin-bottom: 16px; }

.om-os-billede {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.om-os-billede img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.om-os-certificeringer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cert-badge {
  background: var(--graa);
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blaa);
}

/* Statistik */
.statistik-section {
  background: linear-gradient(120deg, var(--blaa), var(--blaa-lys));
  padding: 60px 40px;
}

.statistik-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-kort { color: #fff; }

.stat-tal {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--turkis);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 8px;
}

/* Team */
.team-section { padding: 80px 40px; background: var(--graa); }

.team-inner { max-width: 1100px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.team-kort {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform .3s;
}

.team-kort:hover { transform: translateY(-4px); }

.team-billede {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blaa), var(--turkis));
}

.team-billede img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 24px; }
.team-info h3 { color: var(--blaa); margin: 0 0 4px; }

.team-titel {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.team-info p { color: #666; font-size: 0.95rem; line-height: 1.6; }

.team-tlf {
  display: inline-block;
  margin-top: 12px;
  color: var(--blaa);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Tidslinje */
.tidslinje-section { padding: 80px 40px; }

.tidslinje-inner { max-width: 800px; margin: 0 auto; }

.tidslinje {
  position: relative;
  margin-top: 50px;
  padding-left: 40px;
}

.tidslinje::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--blaa), var(--turkis));
}

.tidslinje-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tidslinje-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}

.tidslinje-aar {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blaa);
  min-width: 60px;
}

.tidslinje-content h4 { color: var(--blaa); margin: 0 0 6px; }
.tidslinje-content p { color: #666; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ==========================================================
   AKUT HJÆLP / DRIFTSFORSTYRRELSER
   ========================================================== */
.akut-hero {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  padding: 100px 40px;
  text-align: center;
  color: #fff;
}

.akut-hero-inner { max-width: 700px; margin: 0 auto; }

.akut-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.akut-hero h1 { font-size: 3rem; text-transform: uppercase; margin: 0 0 16px; }

.akut-tlf-knap {
  display: inline-block;
  background: #fff;
  color: #c0392b;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 20px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.akut-tlf-knap:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.akut-guide-section { padding: 80px 40px; }
.akut-guide-inner { max-width: 800px; margin: 0 auto; }

.akut-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }

.akut-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.step-nummer {
  min-width: 48px;
  height: 48px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.step-content h3 { color: var(--blaa); margin: 0 0 8px; }
.step-content p { color: #555; margin: 0; line-height: 1.6; }

.akut-hjaelp-kort {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  font-weight: 600;
  color: var(--blaa);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.akut-cta { background: #c0392b; color: #fff; padding: 60px 40px; text-align: center; }
.akut-cta h2 { font-size: 1.8rem; margin-bottom: 20px; }

/* ==========================================================
   PRISER / TAKSTER
   ========================================================== */
.priser-section { padding: 80px 40px; background: var(--graa); }
.priser-inner { max-width: 1100px; margin: 0 auto; }

.pris-kategori {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pris-kategori h3 {
  color: var(--blaa);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--graa);
}

.pris-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pris-kort {
  background: var(--graa);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.pris-kort.highlighted { background: var(--blaa); color: #fff; }

.pris-navn { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.pris-beskrivelse { font-size: 0.85rem; opacity: 0.7; margin-bottom: 16px; }

.pris-beloeb { font-size: 2rem; font-weight: 800; color: var(--orange); }
.pris-kort.highlighted .pris-beloeb { color: var(--turkis); }
.pris-beloeb span { font-size: 0.9rem; font-weight: 400; opacity: 0.7; }

.pris-liste { display: flex; flex-direction: column; }

.pris-linje {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--graa);
}

.pris-linje:last-child { border-bottom: none; }
.pris-opgave { color: #333; font-weight: 500; }
.pris-pris { color: var(--blaa); font-weight: 700; font-size: 1.05rem; }

.pris-pakke {
  background: var(--graa);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.pris-pakke.highlighted {
  background: var(--blaa);
  color: #fff;
  transform: scale(1.03);
}

.pakke-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pakke-navn { font-size: 1.3rem; font-weight: 800; color: var(--blaa); margin-bottom: 10px; }
.pris-pakke.highlighted .pakke-navn { color: #fff; }

.pakke-pris { font-size: 2.2rem; font-weight: 800; color: var(--orange); margin-bottom: 20px; }
.pris-pakke.highlighted .pakke-pris { color: var(--turkis); }
.pakke-pris span { font-size: 0.9rem; font-weight: 400; opacity: 0.7; }

.pakke-indhold { line-height: 2; }
.pakke-indhold .ikke-inkl { opacity: 0.4; text-decoration: line-through; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-section { padding: 80px 40px; background: var(--graa); }
.faq-inner { max-width: 850px; margin: 0 auto; }

.faq-kategori { margin-bottom: 40px; }
.faq-kategori h2 { color: var(--blaa); font-size: 1.3rem; margin-bottom: 16px; }

.faq-liste { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-spoergsmaal {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blaa);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background .2s;
}

.faq-spoergsmaal:hover { background: var(--graa); }

.faq-ikon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform .3s;
  min-width: 24px;
  text-align: center;
}

.faq-item.is-open .faq-ikon { transform: rotate(45deg); }

.faq-svar {
  display: none;
  padding: 0 24px 20px;
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

.faq-svar p, .faq-svar ol { margin: 0; }
.faq-svar ol { padding-left: 20px; line-height: 2; }

.faq-kontakt-boks {
  background: linear-gradient(120deg, var(--blaa), var(--blaa-lys));
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  margin-top: 50px;
}

.faq-kontakt-boks h3 { font-size: 1.5rem; margin-top: 0; }
.faq-kontakt-boks p { opacity: 0.9; margin-bottom: 24px; }

/* ==========================================================
   NYHEDER SIDE
   ========================================================== */
.nyheder-section { padding: 60px 40px 100px; background: var(--graa); }
.nyheder-inner { max-width: 1200px; margin: 0 auto; }

.nyhed-featured {
  margin-bottom: 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}

.nyhed-featured-link {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
  color: var(--tekst);
}

.nyhed-featured-image {
  position: relative;
  overflow: hidden;
  background: var(--blaa);
}

.nyhed-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.nyhed-featured:hover .nyhed-featured-image img { transform: scale(1.04); }

.nyhed-featured-content {
  background: #fff;
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nyhed-featured-content h2 {
  color: var(--blaa);
  font-size: 1.7rem;
  margin: 14px 0 16px;
  line-height: 1.2;
}

.nyhed-featured-content p { color: #555; line-height: 1.7; font-size: 1rem; margin-bottom: 24px; }

.nyhed-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nyhed-dato { font-size: 0.85rem; color: #888; font-weight: 500; }

.nyhed-kategori {
  background: var(--blaa);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nyhed-laes-mere { color: var(--orange); font-weight: 700; font-size: 0.95rem; }

.nyheder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}

.nyhed-kort {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform .3s, box-shadow .3s;
}

.nyhed-kort:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}

.nyhed-kort a { display: block; color: var(--tekst); }

.nyhed-kort-billede {
  height: 200px;
  overflow: hidden;
  background: var(--blaa);
}

.nyhed-kort-billede img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.nyhed-kort:hover .nyhed-kort-billede img { transform: scale(1.05); }

.nyhed-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--blaa), var(--turkis));
}

.nyhed-kort-indhold { padding: 24px; }

.nyhed-kort-indhold h3 {
  color: var(--blaa);
  font-size: 1.05rem;
  margin: 12px 0 10px;
  line-height: 1.3;
}

.nyhed-kort-indhold p { color: #666; font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }

.nyheder-tom {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 20px;
}

.nyheder-tom span { font-size: 4rem; display: block; margin-bottom: 16px; }
.nyheder-tom h3 { color: var(--blaa); font-size: 1.5rem; margin-bottom: 10px; }
.nyheder-tom p { color: #888; margin-bottom: 24px; }

.nyheder-pagination { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 20px; }

.nyheder-pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--blaa);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all .2s;
}

.nyheder-pagination .page-numbers.current,
.nyheder-pagination .page-numbers:hover {
  background: var(--blaa);
  color: #fff;
}

@media (max-width: 900px) {
  .nyhed-featured-link { grid-template-columns: 1fr; min-height: auto; }
  .nyhed-featured-image { height: 280px; }
  .nyhed-featured-content { padding: 30px; }
  .nyheder-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nyheder-grid { grid-template-columns: 1fr; }
  .nyheder-section { padding: 40px 20px 60px; }
}

/* ==========================================================
   VANDKVALITET SEKTION
   ========================================================== */
.vandkvalitet-section {
  padding: 80px 40px;
  background: #fff;
}

.vandkvalitet-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vandkvalitet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vandkvalitet-kort {
  background: var(--graa);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.vandkvalitet-kort:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.vandkvalitet-ikon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.vandkvalitet-kort h3 {
  color: var(--blaa);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.vandkvalitet-kort .vaerdi {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blaa-lys);
  display: block;
  margin: 10px 0 4px;
}

.vandkvalitet-kort .enhed {
  font-size: 0.85rem;
  color: #888;
}

.vandkvalitet-kort p {
  color: #666;
  font-size: 0.9rem;
  margin-top: 10px;
  line-height: 1.5;
}

.vandkvalitet-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8fdf0;
  color: #158f4e;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 10px;
}

/* ==========================================================
   DRIFTSTATUS SEKTION
   ========================================================== */
.driftstatus-section {
  padding: 60px 40px;
  background: var(--graa);
}

.driftstatus-inner {
  max-width: 900px;
  margin: 0 auto;
}

.driftstatus-boks {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-top: 30px;
}

.driftstatus-linje {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--graa);
}

.driftstatus-linje:last-child { border-bottom: none; }

.driftstatus-navn {
  font-weight: 600;
  color: var(--blaa);
  display: flex;
  align-items: center;
  gap: 10px;
}

.driftstatus-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

.driftstatus-badge.ok { background: #e8fdf0; color: #158f4e; }
.driftstatus-badge.advarsel { background: #fff3ee; color: #c0392b; }
.driftstatus-badge.planlagt { background: #fff8e1; color: #f57f17; }

/* ==========================================================
   PRIVATLIVSPOLITIK
   ========================================================== */
.privatliv-section { padding: 60px 40px 100px; background: var(--graa); }

.privatliv-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.privatliv-toc {
  position: sticky;
  top: 30px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.privatliv-toc h3 {
  color: var(--blaa);
  margin-top: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--graa);
}

.privatliv-toc ol { padding-left: 18px; margin: 0; }
.privatliv-toc li { margin-bottom: 10px; font-size: 0.9rem; }
.privatliv-toc a { color: #555; transition: color .2s; }
.privatliv-toc a:hover { color: var(--orange); }

.privatliv-afsnit {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  scroll-margin-top: 100px;
}

.afsnit-nummer { font-size: 2rem; font-weight: 800; color: var(--graa); line-height: 1; padding-top: 6px; }

.afsnit-indhold h2 { color: var(--blaa); font-size: 1.4rem; margin-top: 0; margin-bottom: 16px; }
.afsnit-indhold h3 { color: var(--blaa); font-size: 1.1rem; margin-top: 28px; }
.afsnit-indhold p { color: #555; line-height: 1.7; margin-bottom: 16px; }

.virksomhed-info-boks {
  background: var(--graa);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.virksomhed-info-boks h4 { color: var(--blaa); margin-top: 0; margin-bottom: 12px; }
.virksomhed-info-boks ul { padding: 0; line-height: 2; }
.virksomhed-info-boks a { color: var(--blaa); font-weight: 600; }

.info-boks {
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-boks.blaa { background: #e8f4fd; border-left: 4px solid var(--blaa-lys); color: var(--blaa); }
.info-boks.orange { background: #fff3ee; border-left: 4px solid var(--orange); color: #c0392b; }
.info-boks.groen { background: #e8fdf0; border-left: 4px solid #27ae60; color: #1a7a40; }
.info-boks.graa { background: var(--graa); border-left: 4px solid #aaa; color: #555; }
.info-boks a { color: inherit; font-weight: 700; }

.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }

.kontakt-boks { background: var(--graa); border-radius: 12px; padding: 24px; }
.kontakt-boks h4 { color: var(--blaa); margin-top: 0; }
.kontakt-boks ul { padding: 0; line-height: 2.2; }
.kontakt-boks a { color: var(--blaa); font-weight: 600; }

@media (max-width: 900px) {
  .privatliv-inner { grid-template-columns: 1fr; }
  .privatliv-toc { position: static; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .privatliv-afsnit { grid-template-columns: 1fr; }
  .afsnit-nummer { display: none; }
  .vandkvalitet-grid { grid-template-columns: 1fr 1fr; }
  .ydelser-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .statistik-inner { grid-template-columns: repeat(2, 1fr); }
  .pris-grid { grid-template-columns: 1fr; }
  .om-os-inner { grid-template-columns: 1fr; }
  .ydelse-enkelt-section { grid-template-columns: 1fr; }
  .ydelse-sidebar { position: static; }
}

@media (max-width: 600px) {
  .privatliv-section { padding: 40px 20px; }
  .privatliv-afsnit { padding: 24px; }
  .vandkvalitet-grid { grid-template-columns: 1fr; }
  .ydelser-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .statistik-inner { grid-template-columns: 1fr 1fr; }
  .akut-hero h1 { font-size: 2rem; }
  .tidslinje { padding-left: 30px; }
  .faq-kontakt-boks { padding: 30px 20px; }
}

/* ==========================================================
   TAKSTBLAD 2026
   ========================================================== */
.priser-section {
  padding: 80px 40px;
  background: var(--graa);
}

.priser-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.takst-header-boks {
  background: linear-gradient(
    120deg,
    var(--blaa) 0%,
    var(--blaa-lys) 55%,
    var(--turkis) 100%
  );
  color: #fff;
  text-align: center;
  padding: 28px 30px;
  margin-bottom: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(10, 61, 98, 0.16);
}

.takst-header-boks h2 {
  color: #fff;
  font-size: 1.8rem;
  margin: 0 0 8px;
  line-height: 1.25;
}

.takst-header-boks p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin: 0;
}

.takst-kolonne-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 160px;
  gap: 16px;
  padding: 0 16px 10px;
  color: var(--blaa);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.takst-kolonne-header span:nth-child(2),
.takst-kolonne-header span:nth-child(3) {
  text-align: right;
}

.takst-sektion {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.takst-sektion-titel {
  color: var(--blaa);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 24px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--graa);
}

.takst-gruppe-label {
  color: var(--blaa);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}

.takst-gruppe-label[style*="margin-top"] {
  margin-top: 24px !important;
}

.takst-raekker {
  width: 100%;
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.takst-raekke {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px 160px;
  gap: 16px;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #edf1f5;
}

.takst-raekke:last-child {
  border-bottom: none;
}

.takst-raekke:nth-child(even) {
  background: #f8fafc;
}

.takst-raekke:hover {
  background: #f0f7fc;
}

.takst-raekke.highlighted {
  background: #e8f4fd;
}

.takst-raekke.highlighted:hover {
  background: #dff0fb;
}

.takst-navn {
  min-width: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.45;
}

.takst-navn small {
  display: block;
  color: #888;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2px;
}

.takst-ekskl,
.takst-inkl {
  text-align: right;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

.takst-ekskl {
  color: var(--blaa);
}

.takst-inkl {
  color: #158f4e;
}

.takst-info-boks {
  background: #f8f9fa;
  border-left: 4px solid var(--blaa-lys);
  border-radius: 0 10px 10px 0;
  color: #555;
  padding: 16px 18px;
  margin: 0 0 18px;
  font-size: 0.94rem;
  line-height: 1.7;
}

.takst-info-boks p {
  margin: 0 0 12px;
}

.takst-info-boks p:last-child {
  margin-bottom: 0;
}

.takst-footer-note {
  max-width: 850px;
  margin: 10px auto 0;
  padding: 20px 10px 0;
  border-top: 1px solid #dfe7ee;
  color: #777;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .priser-section {
    padding: 60px 24px;
  }

  .takst-sektion {
    padding: 24px;
  }

  .takst-kolonne-header,
  .takst-raekke {
    grid-template-columns: minmax(0, 1fr) 135px 135px;
  }

  .takst-kolonne-header,
  .takst-raekke {
    gap: 12px;
  }
}

@media (max-width: 650px) {
  .priser-section {
    padding: 45px 16px 60px;
  }

  .takst-header-boks {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .takst-header-boks h2 {
    font-size: 1.4rem;
  }

  .takst-sektion {
    padding: 20px 14px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .takst-sektion-titel {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .takst-kolonne-header {
    display: none;
  }

  .takst-raekke {
    display: block;
    padding: 13px 14px;
  }

  .takst-navn {
    display: block;
    margin-bottom: 8px;
    font-size: 0.94rem;
  }

  .takst-ekskl,
  .takst-inkl {
    display: block;
    text-align: left;
    font-size: 0.9rem;
    margin-top: 4px;
    white-space: normal;
  }

  .takst-ekskl::before {
    content: "Ekskl. moms: ";
    color: #888;
    font-size: 0.82rem;
    font-weight: 400;
  }

  .takst-inkl::before {
    content: "Inkl. moms: ";
    color: #888;
    font-size: 0.82rem;
    font-weight: 400;
  }

  .takst-gruppe-label {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .takst-info-boks {
    font-size: 0.88rem;
    padding: 14px;
    line-height: 1.6;
  }

  .takst-footer-note {
    font-size: 0.82rem;
  }
}