* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

header {
  background-image: linear-gradient(-20deg, #002227 0%, #001b21 100%);
  /* Sett bakgrunnsfargen til hvit */
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-item {
  display: flex;
  align-items: center;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 5rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif,
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

.current {
  color: #56ffa2;
  font-weight: 500;
  font-size: 19px;
}

/**********************************/
/*      NAVBAR/HEADER        */
/**********************************/
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.container {
  max-width: 1400px;
  width: 96%;
  margin: 0 auto;
}

.container-sm {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.navbar {
  min-height: 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar img {
  height: 75px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  display: flex;
  align-items: center;
    font-family: "Bricolage Grotesque", sans-serif;

}

.nav-link {
  transition: 0.3s ease-out;
  font-size: 19px;
  font-weight: 400;
  color: #ffffff;
}

.nav-link:hover {
  color: #52c080;
}

.darkerr {
  padding: 12px 20px;
  color: #fff;
  background-color: #04a346;
  border-radius: 9px;
  display: inline-block;
  font-size: 18px;
}

.nav-link.current {
  color: #93d4ae;
}

.darkerr i {
  margin-left: 10px;
}

.darkerr:hover {
  color: #f1f8ff;
}

.translate-real-btn {
  padding: 8px 20px;
  background-color: #2f1200;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.translate-real-btn:hover {
  background-color: #4b1c00;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 35px;
  height: 2px;
  margin: 6px auto;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

/* --- Dropdown base (som før, men uten gap) --- */
.has-submenu {
  position: relative;
}
.caret {
  margin-left: 6px;
  font-size: 0.9em;
}

.submenu {
  position: absolute;
  left: 0;
  top: 100%; /* rett under knappen */
  min-width: 240px;
  background: #07212b;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 1001;

  /* smooooooth & “hover-intent” følelse */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease,
    visibility 0s linear 0.18s;
  pointer-events: none; /* ingen fokus når skjult */
}

.submenu li {
  margin: 0;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.submenu a:hover {
  background: #0b2c38;
  color: #56ffa2;
}

/* --- VIS når du hovrer enten triggeren ELLER selve menyen --- */
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
  pointer-events: auto;
}

/* --- Usynlig “hover-bro” for å unngå gap-blink --- */
.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 10px); /* overlapper knapp + topp av menyen */
  height: 14px; /* bro-høyde: juster ved behov */
  /* ingen bakgrunn – helt usynlig */
}

/* Desktop: hover aktiverer (du kan beholde tidligere regler) */
@media (hover: hover) {
  .has-submenu:hover .caret {
    transform: rotate(180deg);
  }
}

/* Mobil: fortsatt accordion som før */
@media (max-width: 980px) {
  .submenu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 6px 4px 8px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }
  .has-submenu.open > .submenu {
    display: block;
  }
}

@media (hover: hover) {
  .submenu {
    margin-top: 6px;
  } /* liten luft uten “blink” */
}

/* Google Translate container styling */
/* 🌐 Språk-knapp (desktop og mobil) */
.custom-language-selector {
  position: relative;
}

/* Dropdown-container */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

/* Toggle-knapp */
.lang-toggle {
  background-color: transparent;
  color: #ffffff;
  border: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  max-width: 120px;
  text-align: left;
}

/* Dropdown-meny */
.lang-options {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  z-index: 999;
  margin-top: 8px;
}

.lang-options a {

  color: #000;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-size: 14px;
}

.lang-options a:hover {
  background-color: #f0f0f0;
}

.lang-options img {
  width: 18px;
  height: auto;
  border-radius: 3px;
}

/* 📱 Mobilresponsivitet */
@media (max-width: 768px) {
  .lang-toggle {
    font-size: 15px;
    padding: 12px 0;
    width: 100%;
    max-width: none;
    color: #fff;
  }

  .lang-options {
    left: 0;
    right: auto;
    min-width: 100%;
  }

  .lang-options a {
    padding: 14px 18px;
    font-size: 15px;
  }

  .lang-options img {
    width: 15px;
    height: auto;
    border-radius: 3px;
  }
}

/**********************************/
/*      HERO SECTIONS              */
/**********************************/

/* HERO SECTION */
:root {
  --bg: #f6f5ef; /* lys off-white bakgrunn (fra prøven) */
  --ink: #1c1c1c; /* standard tekst */
  --muted: #6f6f6f; /* sekundær tekst */
  --brand: #b45143; /* rubin/rust-rød overskrift/CTA */
  --brand-dark: #8f3c30;
  --pill: #eee4df;
  --accent: #e9ddd8;
  --stroke: #e9e3e0;
  --success: #113b2c;
}

.hero {
  padding: 140px 0;
    background-image: linear-gradient(-20deg, #03404a 0%, #011d22 100%);


  position: relative;
  overflow: hidden;
}

/* Plassér og skaler stripe-SVG-en til høyre */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg-svg {
  position: absolute;
  right: -6vw; /* dra litt ut til høyre som i referansen */
  top: 0;
  width: min(62vw, 780px); /* bredde på formen */
  height: 100%;
  display: block;
  /* subtil “drift” for levende følelse (kan fjernes) */
  animation: heroStripeDrift 8s ease-in-out infinite alternate;
  opacity: 0.4; /* fin blending med bakgrunn */
}

/* Valgfri subtil bevegelse */
@keyframes heroStripeDrift {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-14px);
  }
}

/* Bonus: svake, superbrede striper over hele hero for ekstra dybde */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
    background-image: linear-gradient(-20deg, #03404a 0%, #011d22 100%);

  mix-blend-mode: overlay;
  opacity: 0.25;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
}

/* Mobil stack */
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
  }
}

/* Venstre kolonne */
.hero__pill {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  color: #777;
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 1px 0 #fff inset, 0 1px 2px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
}

.hero__title {
  margin: 0 0 0.75rem 0;
  font-weight: 500;
  color: #fff;
  font-size: 57px;
  max-width: 70%;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero__lead {
  color: #fff;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.25rem);
  margin: 30px 0;
  max-width: 500px;
}
.hero__sub {
  color: #ffffff;
  margin: 40px 0;
  font-size: 18px;
  color: #9efffd;
  font-weight: 300;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.8rem 1.25rem;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 19px;
  color: #092b26;

  border: 0;
}

.btn--primary:where(:hover, :focus-visible) {
  background: #023d3c;
}

.callout {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: solid #fff 1.2px;
  padding: 0.85rem 1rem;
  border-radius: 6px;
}
.callout__icon {
  width: 20px;
  height: 20px;
  fill: #3fff76;
}
.callout__label {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.callout__phone {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.hero__meta {
  margin-top: 1.2rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: #2e2e2e;
  font-size: 0.8rem;
}

/* Høyre kolonne / bilde */
.media-card {
  position: relative;
  isolation: isolate;
  border-radius: 15px 15px 15px 100px; /* stor kurve nede til høyre */
  overflow: hidden;
  background: #fff;
}
.media-card img {
  width: 120%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Rund merke med ring */
.media-card__badge {
  position: absolute;
  right: 1.4rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 113px;
  height: 113px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.badge__ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed #ff927a;
  display: grid;
  place-items: center;
  color: #b45143;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.badge__text {
  transform: rotate(-32deg);
  text-align: center;
}
.badge__icon {
  position: relative;
  font-size: 1.25rem;
}

/* Notebadge nede */
.media-card__note {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.note__dotline {
  width: 140px;
  height: 0;
  border-top: 2px dashed #e2b8ad;
  border-radius: 999px;
  position: relative;
  left: 0;
}
.note__chip {
  background: #fff;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.note__icon {
  display: inline-block;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr; /* stack */
    gap: 20px;
  }
  /* Sørg for rekkefølge: innhold først, bilde etter */
  .hero__content {
    order: 0;
  }
  .hero__media {
    order: 1;
  }

  /* Unngå at bildet stikker utenfor på små skjermer */
  .media-card img {
    width: 100%;
  }
}

/* Store skjermer: behold 2 kolonner side-ved-side (din default) */
@media (min-width: 961px) {
  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Normal rekkefølge side-ved-side */
  .hero__content {
    order: 0;
  }
  .hero__media {
    order: 0;
  }
}


:root {
  --bg: #0d222f00;
  --card: #021c2cde;
  --text: #ffffff;
  --muted: #324146;
  --pill: #f2f5f7;
  --btn: rgba(3, 41, 62, 0.069);
  --btn-bd: rgba(1, 28, 34, 0.855);
}

.g-pad {
  margin: 140px 0;
}

.clients-section {
  padding: 32px 0;
  background-color: #f3eee2dd;
}
.clients-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.clients-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
    font-family: "Bricolage Grotesque", sans-serif;

  margin: 0 0 26px;
  font-weight: 700;
  color: #0e1116;
}
.clients-copy p {
  margin: 0 0 22px;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 46ch;
}
.clients-link {
  display: inline-block;
  font-weight: 700;
  color: #0e1116;
  text-underline-offset: 4px;
  text-decoration: underline;
}

.clients-media {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.clients-media img {
  
  width: 100%;
  
}
.clients-media img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .clients-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .clients-media {
    padding: 20px;
  }

  .clients-copy {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .clients-media img {

  width: 100%;
  max-width: 350px;
  
}
}
@media (max-width: 560px) {
  .clients-section {
    padding: 56px 16px;
  }
}





.thep {
  padding: 30px 0;
}

.bg-som {
  background-color: #f0ece2;
}

.blog-strip {
  padding: 60px 0;
  padding-top: 120px;
  color: #000000;
  margin-bottom: 100px;
  margin-left: 40px;
}

.blog-head {
  max-width: 1300px;
  margin: 0 auto 10px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  position: relative;
}
.blog-head h1 {
  margin-bottom: 30px;
    font-family: "Bricolage Grotesque", sans-serif;
  font-size: 50px;
  font-weight: 500;
}
.blog-all {
  color: #000000;
  text-decoration: none;
  opacity: 0.9;
}
.blog-all:hover {
  opacity: 1;
}

.blog-nav {
  display: flex;
  gap: 10px;
}
.blog-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #021e1c;
  border: 1.5px solid var(--btn-bd);
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}
.blog-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}
.blog-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Scroller */
.blog-scroller {
  max-width: 1390px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 32%, 420px); /* responsiv kortbredde */
  gap: 28px;
  overflow-x: auto;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.blog-scroller::-webkit-scrollbar {
  height: 8px;
}
.blog-scroller::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

/* Kort */
.blog-card {
  scroll-snap-align: start;
  background-image: linear-gradient(-20deg, #D9E8D9 0%, #D9E8D9 100%);

  color: var(--text);
  border-radius: 10px;
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pill {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 300;
  color: #1c2c19;
  background: transparent;
  border: 0.6px solid #201717;
  padding: 6px 14px;

  border-radius: 999px;
}
.blog-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  margin-bottom: 30px;
  color: #170b0b;
  font-weight: 400;
}
.media {
  position: relative;
  overflow: hidden;
}
.media img {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.go {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  background-color: #017b34;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}
.go:hover {
  transform: translateY(-2px);
  background-color: #00a410;
  
}
/* Nettbrett */
@media (max-width: 1024px) {
  .blog-strip {
    padding-top: 90px;
    margin-bottom: 60px;
    margin: 20px;
  }

  .blog-head h1 {
    font-size: 40px;
  }

  .blog-scroller {
    grid-auto-columns: minmax(260px, 50vw);
    gap: 20px;
  }

  .media img {
    height: 210px;
  }
}

/* Mobil */
@media (max-width: 768px) {

  .blog-strip {
    padding-top: 70px;
    margin-bottom: 40px;
  }

  /* Heading layout for mobil */
  .blog-head {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 12px;
    text-align: left;
    padding: 20px;
  }

  .blog-head h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .blog-all {
    font-size: 16px;
    font-weight: 500;
  }

  /* Piler */
  .blog-nav {
    display: flex;
    gap: 10px;
  }

  .blog-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  /* Cards / scroller */
  .blog-scroller {
    grid-auto-columns: 70%;
    gap: 25px;
  }

  .blog-card {
    border-radius: 6px;
    padding: 18px 18px 0;
  }

  .blog-card h3 {
    font-size: 15px;
  }

  .go {
    width: 40px;
    background-color: #017b34;
    height: 40px;
    border: 0;
    font-size: 18px;
  }
}

/* Ekstra små mobiler */
@media (max-width: 480px) {

  .blog-head h1 {
    font-size: 28px;
  }

  .blog-scroller {
    grid-auto-columns: 88%;
    gap: 16px;
  }

  .media img {
    height: 180px;
  }

  .blog-card {
    padding: 16px 16px 0;
  }

  .blog-card h3 {
    font-size: 16px;
  }

  .pill {
    font-size: 11px;
  }
}
/* KORT */
.blog-card {
  scroll-snap-align: start;
  border-radius: 20px;
  padding: clamp(14px, 3.2vw, 22px) clamp(14px, 3.2vw, 22px) 0;
  gap: clamp(10px, 2.8vw, 18px);
}
.pill {
  font-size: clamp(12px, 3.5vw, 14px);
  padding: 6px 12px;
}
.blog-card h3 {
  font-size: clamp(18px, 4.6vw, 28px);
  margin-bottom: clamp(18px, 6vw, 50px);
      font-family: "Bricolage Grotesque", sans-serif;

}

/* Bildehøyde responsivt – unngå “for høyt” på mobil */
.media img {
  height: clamp(180px, 44vw, 330px);
  border-radius: 10px 10px 0 0;
}

/* Pil i kortet – stor nok på mobil */
.go {
  width: clamp(40px, 10vw, 44px);
  height: clamp(40px, 10vw, 44px);
  font-size: clamp(18px, 5vw, 22px);
}


#bg-som {
  background-color: #f9f9f9;
}


.cleaning-slider {
  overflow: hidden;
  background-color: transparent;
  padding: 8px 0;
  margin-top: 20px;
}

.cleaning-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-cleaning 30s linear infinite;
}

.cleaning-track h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #4f4c4c; /* Mørk grønn */
  display: inline-block;
  margin: 0;
}

@keyframes scroll-cleaning {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobiltilpasning */
@media (max-width: 768px) {
  .cleaning-track {
    gap: 30px;
  }

  .cleaning-track h3 {
    font-size: 1rem;
  }
}

/*COSM*/
.mem {
  padding: 10px;
}

.mem-cont {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.txt-mem h5 {
  font-size: 20px;
  color: #281200d4;
  font-weight: 600;
}

.txt-mem h5 span {
  color: #e48109;
  font-weight: 800;
}

.img-mem img {
  height: 45px;
  margin-left: -20px;
  border: solid 2px #fde8d0;
  width: 45px;
  border-radius: 50%;
  object-fit: cover;
}

/*LAZY LOADS*/
.lazy-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.4s ease, transform 1.4s ease;
  will-change: opacity, transform;
}

.lazy-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stilling {
  height: 40dvh;
}

.stil {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
}

.stil-sont {
  padding: 20px 0;
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.stil-sont h3 {
  font-size: 20px;
  font-weight: 400;
}

/**********************************/
/*      SERVICES    */
/**********************************/

/* Mobil (≤ 720px) */
/* Mobilvennlig layout */
@media (max-width: 768px) {
  .utl-info {
    flex-direction: column !important; /* stable vertikalt */
  }
  .iutl {
    order: -1 !important;
    width: 100%;
  } /* Bilde øverst */
  .r-utl {
    order: 0 !important;
    width: 100%;
  } /* Tekst under */

  .iutl img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
  }

  .tje {
    align-items: center;
    text-align: center;
  }

  .section-title {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 70%;
    color: #081a29;
    margin-bottom: 40px;
  }

  .flow-tje {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
  }

  .colm {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;
  }

  .colm h5 {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
  }

  .btn-cho {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .flow-tje {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}

.why-choose-us {
  background-color: #042F35;
  text-align: center;
  padding: 60px 0;
}

.why-choose-us h2 {
  font-size: 3rem;
    font-family: "Bricolage Grotesque", sans-serif;

  line-height: 1.3;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 50px;
  color: #ffffff;
}

.why-choose-us h2 span {
  color: #47ff50bc;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding-bottom: 40px;
}

.feature-box {
  border-radius: 12px;
  border: solid #ffffff49 0.1px;
  padding: 30px 25px;
  text-align: left;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-box .icon {
  font-size: 2.3rem;
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 18px;
}

.feature-box h3 {
  font-size: 1.5rem;
    font-family: "Bricolage Grotesque", sans-serif;

  color: #ffffff;
  font-weight: 400;
  margin-bottom: 10px;
}

.feature-box p {
  color: #b1b1b1;
  font-size: 0.97rem;
  line-height: 1.6;
}




@media (max-width: 900px) {
  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-us h2 {
    font-size: 2.1rem;
    padding: 10px;
    margin-bottom: 30px;
  }

  .features {
    gap: 16px;
  }

  .feature-box {
    padding: 22px 18px;
  }

  .feature-box h3 {
    font-size: 1.2rem;
  }

  .feature-box p {
    font-size: 0.94rem;
  }
}

@media (max-width: 600px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }
}







/*SERVICES*/

/* --- Global base --- */
:root {
  --accent: #017b34;
  --dark: #0c3048;
  --text: #222;
  --muted: #555;
  --light-bg: #f8fafa;
}

.news-section {
  background: var(--light-bg);
  padding: 120px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-bottom: 40px;
}

/* --- Grid layout --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
}

/* --- Individual cards --- */
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.031);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.054);
}

.news-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover img {
  transform: scale(1.05);
}

/* --- Date label --- */
.news-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
}

/* --- Content --- */
.news-content {
  padding: 24px;
}

.news-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
}

.news-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 10px 0;
}

.news-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.read-more {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--dark);
  transition: color 0.2s ease;
}

.read-more:hover {
  color: var(--accent);
}

/* --- Responsivitet --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 16px;
  }
  .news-text {
    font-size: 14px;
  }
}

/* Seksjon spacing */
.split-card {
  padding: 104px 0;
  margin-bottom: 90px;
  margin-top: 90px;
  background: #fff;
}

/* Grid: stor venstrekolonne, mindre høyre */
.split-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 0; /* ingen synlig glippe – vi lager overlap */
  position: relative;
}

/* Lyseblått panel med store avrundede hjørner (som i bildet) */
.split-panel {
  background: #0a2537;
  color: #243141;
  border-radius: 28px;
  padding: 48px 52px;
  margin-right: -74px; /* lar bildet “bite seg inn” fra høyre */
  z-index: 1; /* under bildet når de overlapper */
}

/* Eyebrow */
.eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9e8f9;
  font-weight: 700;
}

/* Tittel og brødtekst */
.split-title {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.3;
  max-width: 80%;
  margin-bottom: 40px;
  font-weight: 600;
  color: #ffffff;
}

.split-body {
  display: grid;
  gap: 18px;
  max-width: 80%;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 30px;
  color: #e5f1fd;
}

/* CTA lik skjermbildet: gul pil + mørk knapp */
.cta {
  display: inline-flex;
  align-items: center;
  margin-top: 46px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}
.cta-icon {
  background: #4fe30a;
  color: #13202b;
  font-weight: 800;
  padding: 14px 18px;
  min-width: 52px;
  display: inline-grid;
  place-items: center;
}
.cta-label {
  background:#52963389;
  color: #fff;
  padding: 14px 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.cta:hover .cta-label {
  background: #313a46;
}

/* Bildet som overlapper panelet fra høyre */
.split-media {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateX(-5px); /* drar bildet inn over panelet */
  z-index: 2; /* over panelet */
  margin-top: 50px;
}
.split-media img {
  display: block;
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.tje {
  padding: 60px 0;
}

.flow-tje {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 90%;
  margin-bottom: 40px;
  margin: 20px 0;
}

.colm {
  padding: 12px 20px;
  border: solid #d1e2e1 1px;
  color: #082b3c;
  background-color: #fff;
  font-size: 20px;
  border-radius: 999px;
}

.colm h5 {
  font-weight: 600;
}

.colm i {
  margin-right: 10px;
  font-size: 18px;
  color: #006640e7;
}

/* Responsivitet */
@media (max-width: 1100px) {
  .split-title {
    font-size: 36px;
  }
  .split-panel {
    padding: 40px 42px;
    margin-right: -48px;
  }
  .split-media {
    transform: translateX(40px);
  }
}
@media (max-width: 768px) {
  .split-wrap {
    grid-template-columns: 1fr; /* stack */
    gap: 20px;
  }
  .split-panel {
    margin-right: 0; /* ingen overlap på mobil */
    border-radius: 18px;
    padding: 28px 22px;
  }
  .split-title {
    font-size: 30px;
    width: 100%;
  }
  .split-body {
    font-size: 16px;
  }
  .split-media {
    transform: none;
    border-radius: 18px;
  }
  .split-media img {
    aspect-ratio: 16/9;
  }
  .cta-label {
    font-size: 15px;
  }
}

.servings {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding-bottom: 80px;
}

.cont-serving {
  padding-bottom: 40px;
  background-color: #ffffffd4;
  border-radius: 10px;
}

.cont-serving h3 {
  padding: 20px;
  font-size: 24px;
  font-weight: 700;
}

.cont-serving p {
  padding: 0 20px;
  font-size: 18px;
}

.cont-serving img {
  width: 100%;
  height: 48vh;
  border-radius: 10px 10px 0 0;
}

.define {
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.define h3 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}

.define p {
  color: #fff;
  font-size: 18px;
  padding: 20px;
}

:root {
  --serv-bg: #102938;
  --badge-bg: #fff;
  --badge-fg: #111;
  --chip-bg: rgba(255, 255, 255, 0.08);
  --chip-bd: rgba(255, 255, 255, 0.22);
  --cta: #017b34;
  --cta-fg: #ffffff;
}

.serv {
  padding: 100px 0;
  background-color: #e7edf1;
}

.serv-colm {
  display: flex;
  flex-direction: column;
}
.define {
  text-align: center;
}
.define h3 {
  margin: 0 0 6px;
  color: #021e1c;
  font-size: 48px;
  letter-spacing: 0.5px;
}
.define p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #052e2b;
}

.align-row {
  padding: 40px 0;
}

/* GRID */
.serv-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.bg-som {
  background-color: #f1e7d6;
}

/* KORT */
.elm-select {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  background: #0c1520;
  min-height: 480px;
}
.elm-select > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.elm-select:hover > img {
  transform: scale(1.06);
}

/* Gradient i bunn */
.elm-select::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(
    180deg,
    rgba(6, 14, 22, 0) 0%,
    rgba(6, 14, 22, 0.85) 60%,
    rgba(6, 14, 22, 0.95) 100%
  );
  z-index: 0;
}

/* Prismerke */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--badge-bg);
  color: var(--badge-fg);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* Overlayinnhold */
.overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
}
.overlay h3 {
  margin: 0 0 10px;
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.chip {
  font-size: 13px;
  line-height: 1;
  padding: 9px 12px;
  border-radius: 999px;
  color: #dfe6ec;
  background: var(--chip-bg);
  border: 1px solid var(--chip-bd);
  backdrop-filter: blur(4px);
}

.stats-section {
  padding: 100px 0;
  background-color: #e7edf1;
}

.container-side {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-text {
  flex: 1 1 45%;
}

.stats-subtitle {
  color: #072b00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats-text h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 16px 0;
  line-height: 1.3;
  color: #111;
}

.stats-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-orange {
  background: #258400;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #2c9c00;
}

.stats-cards {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: #034c31;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.icon {
  font-size: 64px;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.card p {
  font-size: 16px;
  color: #dbdbdb;
  margin-top: 8px;
}

/* Responsiv design */
@media (max-width: 768px) {
  .container-side {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .stats-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-text h2 {
    font-size: 28px;
  }

  .card h3 {
    font-size: 24px;
  }
}

.btn-book {
  display: inline-block;
  background: var(--cta);
  color: var(--cta-fg);
  font-weight: 800;
  margin-top: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
}
.btn-book:hover {
  transform: translateY(-1px);
}

/* Responsiv */
@media (max-width: 960px) {
  .serv-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .serv {
    padding: 64px 0 80px;
  }
  .define h3 {
    font-size: 26px;
  }
  .serv-cont {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .elm-select {
    min-height: 360px;
    border-radius: 16px;
  }
  .overlay h3 {
    font-size: 22px;
  }
  .chip {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.mi {
  padding: 70px 0;
  padding-bottom: 140px;
  background-image: linear-gradient(
    45deg,
    #04151f 0%,
    #0d3e3e 99%,
    #082030 100%
  );
}

.mi-cont {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.flat-mi h2 {
  font-size: 30px;
  color: #ffffffdd;
  font-weight: 500;
  line-height: 1.2;
}

.flat-mi span {
  font-size: 70px;
  color: #85ff89e4;
  font-weight: 800;
}

.colm-mi {
  max-width: 40%;
}

.colm-mi p {
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  padding-top: 50px;
}

@media (max-width: 720px) {
  .mi {
    padding: 48px 0 80px; /* mindre padding på mobil */
  }

  .mi-cont {
    flex-direction: column; /* stack i én kolonne */
    align-items: flex-start; /* venstrejustert innhold */
    gap: 20px;
  }

  .flat-mi h2 {
    font-size: 28px; /* mindre overskrift på mobil */
    line-height: 1.4;
    padding-bottom: 40px;
  }

  .flat-mi span {
    font-size: 32px; /* mindre overskrift på mobil */
    line-height: 1.25;
  }

  .colm-mi {
    max-width: 100%; /* la teksten bruke full bredde */
  }

  .colm-mi p {
    font-size: 16px; /* mobilvennlig brødtekst */
    line-height: 1.6;
  }
}

/* -------------------------------- */
.brand {
  padding: 170px 0;
  background-color: #e7edf1;
}

.brand-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background-color: #102938;
  border-radius: 10px;
}

.cl-brand {
  padding-left: 60px;
  padding-top: 90px;
}

.cl-brand h2 {
  font-size: 37px;
  max-width: 500px;
  color: #ffffff;

  line-height: 1.3;
  font-weight: 500;
}

.brand-cont img {
  width: 100%;
  border-radius: 0 10px 10px 0;
}

.cl-brand p {
  margin-bottom: 50px;
  color: #e3ffded5;
  padding-top: 20px;
  font-size: 18px;
}

.btn-phon {
  padding: 16px 30px;
  border-radius: 999px;
  color: #fff;
  background-color: #017b34;
  font-size: 18px;
  display: inline-block;
}

/* Mobil (≤ 720px) */
@media (max-width: 720px) {
  .brand {
    padding: 48px 0;
  }

  .brand-cont {
    grid-template-columns: 1fr; /* én kolonne */
    gap: 20px;
    border-radius: 10px;
    overflow: hidden; /* runde hjørner også på bildet */
  }

  .cl-brand {
    padding: 24px 20px 8px; /* mindre padding */
  }

  .cl-brand h2 {
    font-size: 24px; /* mindre overskrift */
    line-height: 1.25;
    max-width: none;
  }

  .cl-brand p {
    font-size: 16px;
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .brand-cont img {
    order: -1; /* bildet først på mobil */
    width: 100%;
    height: 220px; /* jevn høyde */
    object-fit: cover;
    border-radius: 10px 10px 0 0; /* runde hjørner på toppen */
  }

  .btn-phon {
    display: block;
    text-align: center;
    padding: 14px 18px;
    font-size: 16px;
  }
}

.f h4 {
  font-size: 18px;
  color: #d4ffd3;
  font-weight: 600;
}

.social-icons {
  display: flex;
  padding: 50px 20px;
  gap: 25px;
  margin-top: 20px;
}

.social-icons a {
  color: #ffffff; /* endre farge etter bakgrunn */
  font-size: 28px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0ea568; /* grønn hoverfarge */
}

/**********************************/
/*      CONTACT US     */
/**********************************/

.info-oo {
  padding-top: clamp(56px, 8vw, 120px);
  background: #e7edf1;
}

/* Container med flytende padding */
.cont-oo {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding: clamp(16px, 3.5vw, 30px) clamp(16px, 6vw, 90px);
}

/* Tekst som skalerer */
.cont-oo p {
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.6;
  margin: 0 0 1rem;
}

/* Nettbrett */
@media (max-width: 768px) {
  .cont-oo {
    padding: 20px 24px;
  }
}

/* Små mobiler */
@media (max-width: 480px) {
  .cont-oo {
    padding: 16px;
  }
  .cont-oo p {
    font-size: 16px;
  }
}

/* ===== Connect band ===== */
:root {
  --cb-bg: #0f2629; /* dyp, grønnlig mørk */
  --cb-text: #e8efec; /* lys tekst */
  --cb-muted: rgba(232, 239, 236, 0.6);
  --cb-ring: rgba(255, 255, 255, 0.08); /* sirkel-outline */
  --cb-underline: rgba(232, 239, 236, 0.75);
  --cb-underline-hover: #ffffff;
}

.contact-band {
  background-color: #092130;
  color: var(--cb-text);
  padding: clamp(28px, 5vw, 44px) 0;
}

.cb-container {
  width: min(1280px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.cb-title {
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--cb-text);
  margin: 0;
  opacity: 0.95;
}

.cb-items {
  display: flex;
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
}

.cb-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--cb-text);
  position: relative;
}

.cb-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--cb-text);
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  box-shadow: inset 0 0 0 1px var(--cb-ring);
  opacity: 0.9;
}

.cb-link {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--cb-text);
  text-decoration: underline;
  text-decoration-color: var(--cb-underline);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  white-space: nowrap;
}

.cb-item:hover .cb-link,
.cb-item:focus .cb-link {
  color: #fff;
  text-decoration-color: var(--cb-underline-hover);
}

/* Responsiv: stack på mobil */
@media (max-width: 840px) {
  .cb-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cb-items {
    justify-content: flex-start;
    gap: 28px;
  }
}

.d-app {
  padding-top: 140px;
  background-image: linear-gradient(to top, #f1efea 0%, #f5f1e9 100%);
}

.app-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.info-down {
  margin-left: 60px;
  margin-bottom: 90px;
}

.info-down h5 {
  font-size: 12px;
  background-color: #aa1100;
  color: #fff;
  padding: 4px 16px;
  margin-bottom: 20px;
  font-weight: 500;
  width: fit-content;
  border-radius: 6px;
}

.info-down h1 {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 99%;
  margin-bottom: 30px;
    font-family: "Bricolage Grotesque", sans-serif;

  color: #022b28;
}

.info-down p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 95%;
  font-weight: 500;
}

.dif-app img {
  width: 98%;
}

.app-down {
  display: flex;
  gap: 20px;
  max-width: 60%;
}

.apps img {
  width: 100%;
}

/* Mobil */
@media (max-width: 768px) {
  .d-app {
    padding-top: 80px;
  }

  .app-cont {
    grid-template-columns: 1fr; /* stack */
    gap: 10px;
  }

  .info-down h1 {
    font-size: 33px;
  }

  .dif-app img {
    width: 100%;
    max-width: 400px;
  }
}
/**********************************/
/*      FORM SUBMIT     */
/**********************************/


.form-contact {
  padding: 60px 0;
    background-image: linear-gradient(-20deg, #03404a 0%, #011d22 100%);

}

.grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 40px 0;
}

.form-info h2 {
  color: #ebfffa;
  font-size: 55px;
  font-weight: 600;
  max-width: 90%;
  line-height: 1.1;
  margin-bottom: 40px;
}

.form-info h6 {
  font-size: 22px;
  color: #ffffff;
  margin-top: 20px;
  max-width: 400px;
  padding-bottom: 40px;
  font-weight: 400;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
  max-width: 600px;
  padding-top: 50px;
}

.contact-image img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-details h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-details p {
  margin: 6px 0;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.5;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  margin-top: 8px;
}

.form-input {
  width: 100%;
  padding-left: 40px;
}

.form-input span {
  color: #ff5a5af6;
  font-size: 20px;
}

label {
  display: block;
  font-size: 18px;
  color: #eaffd8;
  font-weight: 500;
  margin: 15px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  border: none;
  resize: vertical;
}

select {
  background: #ffffff;
  color: #111827;
}

textarea::placeholder {
  color: #6b7280;
}

input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  background: #ffffffb0;
  border-radius: 3px;
  border: none;
}

input[type="submit"] {
  background-color: #1a7600;
  color: #ffffff;
  padding: 19px 30px;
  border: 0;
  border-radius: 9px;
  font-size: 20px;
  margin-top: 20px;
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.9;
}

.top-icon {
  padding: 40px 0;
  color: #ffffff;
  max-width: 500px;
}

.top-icon p {
  margin-top: 80px;
  color: #fffffff1;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.content-icon {
  display: flex;
  margin-bottom: 30px;
}

.content-icon i {
  margin-right: 10px;
  font-size: 20px;
  color: #000000;
  background-color: #302cff;
  padding: 10px;
  border-radius: 50%;
}

.serving h4 {
  margin-top: 10px;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
}

.serving h4 a {
  color: #000000;
  text-decoration: none;
}

.serving h4 a:hover {
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 2px;
}

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

  .form-input,
  .form-info {
    padding-left: 0;
    width: 100%;
  }

  .contact-image img {
    width: 140px;
    height: 140px;
  }

  .form-info h2 {
    font-size: 38px;
  }

  .form-info h6,
  .top-icon p {
    font-size: 16px;
  }

  .contact-details h3 {
    font-size: 20px;
  }

  .top-icon .content-icon {
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/*PRODUCTS*/
.products {
  padding: 120px 0;
  align-items: center;
  text-align: center;
}

.cont-prod {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.prod-cat img {
  width: 100%;
  aspect-ratio: 3/3;
  object-fit: cover;
}

/**********************************/
/*      FOOTER      */
/**********************************/
.footer {
  background-image: linear-gradient(-20deg, #002025 0%, #001215 100%);
  padding: 60px 0;
  color: #f0f0f0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-col p {
  font-size: 15px;
  font-weight: 300;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-col .links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col .links li {
  margin-bottom: 12px;
}

.footer-col .links a {
  text-decoration: none;
  color: #bfbfbf;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col .links a:hover {
  color: #ffffff;
}

/* Newsletter form */
.footer-col form.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.footer-col input[type="email"] {
  height: 48px;
  padding: 0 15px;
  border: 1px solid #ffffff44;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.footer-col input[type="email"]::placeholder {
  color: #ccc;
}

.footer-col input[type="email"]:focus {
  border-color: #f9ca88;
  outline: none;
}

.btn-sub {
  align-self: flex-start;
  padding: 12px 24px;
  border: solid #fff 0.7px;
  color: #000000;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-sub:hover {
  background-color: #e0b66e;
}

/* Icons */
.footer-col .icons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.footer-col .icons i {
  color: #afb6c7;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-col .icons i:hover {
  color: #ffffff;
}

/* Bottom strip */
.u-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #ffffff22;
  padding-top: 25px;
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

.koppirett p,
.utv p {
  color: #cccccc;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.utv a {
  color: #f9ca88;
  font-weight: 500;
  text-decoration: underline;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .u-foot {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/*************************************/
.pc h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-grid {
  padding: 140px 0;
}

.product-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.product-item {
  background: #fffaf4;
  border: 1px solid #4427015e;
  border-radius: 8px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: #fff3e0;
  cursor: pointer;
}

.product-item i:hover {
  cursor: pointer;
}

.product-item i {
  font-size: 42px;
  margin-bottom: 15px;
  color: #eb9409;
}

.product-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

.product-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.product-section h2 {
  font-size: 32px;
  color: #081986;
  margin-bottom: 6px;
}

.product-section p {
  color: #16213c;
  font-size: 16px;
  margin-bottom: -60px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.product-box {
  border: 2px dashed #0e26935f;
  padding: 20px;
  max-width: 480px;
  border-radius: 10px;
  background: #fff;
}

.product-box img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 6px;
}

.product-box h3 {
  color: #002678;
  font-size: 22px;
  margin-bottom: 10px;
}

.product-box p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.quote-link {
  font-weight: bold;
  color: #172d5d;
  text-decoration: none;
  font-size: 15px;
}

.quote-link:hover {
  color: #1d5ef7;
}



/*@@@@@@@@@@@@@@@@@@@@@@@*/
.category-section {
  padding: 60px 20px;
  background-color: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.category-item i {
  font-size: 58px;
  color: #444;
}

.category-item:hover {
  transform: translateY(-4px);
  color: #000;
}

/**********************************/
/*      VÅRE TJENESTER / FLYTTING      */
/**********************************/


:root {
  /* DESIGNTOKENS */
  --ajg-accent: #04722d;               /* primær */
  --ajg-accent-weak: #cce0ccc0;        /* lys bakgrunn/pill */
  --ajg-fg: #121619;
  --ajg-fg-muted: #1a1f28;
  --ajg-bg: #ffffff;
  --ajg-radius: 14px;
  --ajg-ring: 2px;
  --ajg-ring-color: color-mix(in oklab, var(--ajg-accent) 65%, white);

  /* Flytende typografi */
  --step--1: clamp(0.875rem, 0.82rem + 0.2vw, 0.95rem);
  --step-0: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --step-1: clamp(1.125rem, 1.02rem + 0.7vw, 1.35rem);
  --step-2: clamp(1.375rem, 1.2rem + 1.4vw, 1.8rem);
  --step-3: clamp(1.75rem, 1.5rem + 2.4vw, 2.6rem);
}

/* REDUSERT BEVEGELSE */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* HERO */
.ajg-hero {
  /* bruk safe-area på mobil */
  padding-block: clamp(72px, 8vh, 180px);
  padding-inline: max(24px, env(safe-area-inset-left));
  background: var(--ajg-bg);
  color: var(--ajg-fg);
}

.ajg-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: #0f1a1c;
}

.ajg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  padding-left: 28px;
}

/* "✔" ikon via CSS – bytter ut standard bullet */
.ajg-list li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0aa33f; /* grønn profilfarge */
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 1px;
  opacity: 0.9;
}

/* Mørk bakgrunn støttes (hero-seksjon etc.) */
.hero .ajg-list,
.dark .ajg-list {
  color: #ffffff;
}
.hero .ajg-list li::before,
.dark .ajg-list li::before {
  color: #5dff9d;
}

/* Mobiljustering */
@media (max-width: 600px) {
  .ajg-list {
    font-size: 16px;
    gap: 8px;
  }
}

/* WRAPPER – mobil først */
.ajg-wrap {
  max-width: 1320px;
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1fr;            /* mobil: enkel kolonne */
  gap: clamp(20px, 5vw, 56px);
  align-items: center;
}

/* ≥ 820px: to kolonner */
@container (min-width: 820px) {
  /* Hvis container queries ikke støttes, fanges dette ikke, så vi faller tilbake på media nedenfor */
}
@media (min-width: 820px) {
  .ajg-wrap { grid-template-columns: 1.05fr 1fr; }
}

/* TEKSTKOLONNE */
.ajg-text h2 {
  font-size: var(--step-3);
  line-height: 1.2;
  margin: 0 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.ajg-lead {
  font-size: var(--step-0);
  color: var(--ajg-fg-muted);
  margin: 20px 0 28px;
  max-width: 60ch;
}

.ajg-sub {
  font-size: var(--step--1);
  color: var(--ajg-fg-muted);
  margin: 0 0 10px;
}

/* CTA-rad */
.ajg-cta {
  display: flex;
  align-items: center;
  gap: 12px 14px;
  flex-wrap: wrap;
  margin-block: 18px 20px;
}

/* Primær-knapp */
.ajg-btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ajg-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  min-height: 44px;                      /* trygt trykkmål */
  letter-spacing: 0.2px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 6px 20px -8px color-mix(in oklab, var(--ajg-accent) 55%, transparent);
}
.ajg-btn:hover { transform: translateY(-1px); }
.ajg-btn:active { transform: translateY(0); }
.ajg-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ajg-ring) var(--ajg-ring-color);
}

/* Sekundær (outline) */
.ajg-btn-ghost {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  background: var(--ajg-accent);
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.ajg-btn-ghost:hover {
 opacity: 0.9;
}
.ajg-btn-ghost:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ajg-ring) var(--ajg-ring-color);
}

/* Telefon-pill */
.ajg-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--ajg-accent-weak);
  color: var(--ajg-fg);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  line-height: 1;
  transition: box-shadow .2s ease, transform .2s ease;
  will-change: transform;
}
.ajg-call:hover { transform: translateY(-1px); }
.ajg-call:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ajg-ring) var(--ajg-ring-color);
}

.ajg-call-ico {
  inline-size: 40px;
  block-size: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--ajg-accent);
  color: #fff;
  flex: 0 0 40px;
}

/* Åpen-status */
.ajg-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ajg-fg);
  font-weight: 600;
  margin-block-start: 10px;
  font-size: var(--step--1);
}
.ajg-dot {
  inline-size: 10px;
  block-size: 10px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

/* MEDIA – bilde */
.ajg-media {
  /* sørg for at bildet ikke sprenger høyden på små skjermer */
  max-inline-size: 100%;
}
.ajg-media img {
  height: 100%;
  width: 100%;
  border-radius: var(--ajg-radius);
  object-fit: cover;
  display: block;
  /* Liten parallax-lignende effekt uten store bevegelser */
  transform: translateZ(0);
}

:root {
  /* juster fargen hvis du vil bruke profilfargen din i stedet */
  --ajg-check: #22a50d; /* rød ✓ (Tailwind 'red-500') */
}


/* ====== OM OSS / ABOUT ====== */
.ajg-about {
  padding: 170px 0;
  background: var(--ajg-bg, #fff);
  color: var(--ajg-fg, #121619);
  border-top: 1px solid color-mix(in oklab, var(--ajg-fg) 6%, transparent);
}

.ajg-about-wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* mobil først */
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}

/* ≥900px: tittel venstre, tekst høyre */
@media (min-width: 900px) {
  .ajg-about-wrap {
    grid-template-columns: 0.75fr 1.25fr;
  }
}

/* Tittel */
.ajg-about-title h2 {
  margin: 0;
  font-weight: 700;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0.2px;
  line-height: 1.12;
  font-size: clamp(28px, 4vw, 52px);
}

/* Avsnitt */
.ajg-about-text p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: clamp(18px, 1.2vw, 18px);
  margin-bottom: 20px;
  color: var(--ajg-fg, #121619);
  max-width: 72ch;
}

/* Liste over tjenester */
.ajg-about-list {
  margin: 12px 0 18px;
  padding-left: 1.1em;
  color: var(--ajg-muted, #1a1f28);
  font-size: clamp(15px, 1.1vw, 17px);
}
.ajg-about-list li { margin: 0 0 8px; }

/* “Badges” / nøkkelpunkter */
.ajg-about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
}
.ajg-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ajg-accent-weak, #cce0cc6a);
  color: var(--ajg-fg, #121619);
  font-weight: 700;
  font-size: clamp(12px, 1vw, 14px);
  white-space: nowrap;
}

/* Fokus- og tilgjengelighet */
.ajg-about a:focus-visible,
.ajg-badge:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--ajg-accent) 65%, white);
  border-radius: 12px;
}



.ajg-checks {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.6vw, 20px);  /* god luft mellom punkter */
}

.ajg-checks li {
  position: relative;
  padding-left: clamp(20px, 2.2vw, 26px); /* plass til ✓ */
  font-size: clamp(18px, 1.6vw, 18px);    /* stor, lettlest */
  line-height: 1.6;
  color: var(--ajg-muted);
}

/* Rød ✓ foran hvert punkt */
.ajg-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  font-size: 1.4em;              /* stor ✓ som i eksempelet */
  line-height: 1;
  color: var(--ajg-check);
  transform: translateY(0.02em); /* bedre vertikaljustering */
}

/* Høy kontrast/tilgjengelighet (valgfritt) */
@media (prefers-contrast: more) {
  .ajg-checks li { color: var(--ajg-fg); }
}

.ajg-sub {
  margin: 20px 0;
  margin-bottom: 50px;
}

/* ===========================
   RESPONSIVE OPPDATERING
   =========================== */

   /* Høy kontrast/tilgjengelighet (valgfritt) */
@media (prefers-contrast: more) {
  .ajg-checks li {
    color: var(--ajg-fg);
  }
}

.ajg-sub {
  margin: 20px 0 50px;
}



/* ========== 1. Tablet og nedover (≤ 980px) ========== */
@media (max-width: 980px) {
  /* Hero- & about: alltid én kolonne */
  .ajg-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Bilde først på mindre skjermer */
  .ajg-media {
    order: -1;
  }

  .ajg-media img {
    width: 100%;
    max-height: 420px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }

  /* Om oss: én kolonne */
  .ajg-about-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========== 2. Mobilvennlig liste (ajg-checks) (≤ 768px) ========== */
@media (max-width: 768px) {
  .ajg-sub.ajg-checks {
    margin: 16px 0 32px;
    gap: 10px;
  }

  .ajg-sub.ajg-checks li {
    font-size: 15px;
    line-height: 1.5;
    padding-left: 1.6rem;
  }

  /* Gjør "Renhold:", "Flytting & logistikk:" osv. til egen linje */
  .ajg-sub.ajg-checks li strong {
    display: block;
    margin-bottom: 2px;
  }
}

/* Ekstra tight på veldig små skjermer */
@media (max-width: 480px) {
  .ajg-sub.ajg-checks li {
    font-size: 14px;
    gap: 4px;
  }
}

/* ========== 3. Hero – mobil / liten tablet (≤ 768px) ========== */
@media (max-width: 768px) {
  .ajg-hero {
    padding-block: clamp(56px, 10vh, 96px);
    padding-inline: 16px;
    background-color: #ffffff; /* Lys bakgrunn uansett */
  }

  .ajg-wrap {
    gap: 28px;
  }

  .ajg-text {
    text-align: left;
  }

  .ajg-text h2 {
    font-size: clamp(1.8rem, 4.8vw, 2.2rem);
  }

  .ajg-lead {
    font-size: var(--step--1);
    margin-bottom: 18px;
  }

  .ajg-cta {
    justify-content: flex-start;
    gap: 10px 12px;
    flex-wrap: wrap;
  }

  .ajg-cta a {
    font-size: 14px;
  }
}

/* ========== 4. Om oss / About – tablet og nedover (≤ 900px) ========== */
@media (max-width: 900px) {
  .ajg-about {
    padding: 80px 24px;
    background-color: #ffffff;
  }

  .ajg-about-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .ajg-about-title h2 {
    font-size: clamp(28px, 6vw, 36px);
    text-align: center;
  }

  .ajg-about-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .ajg-about-badges {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 12px;
  }

  .ajg-badge {
    font-size: 13px;
    padding: 7px 12px;
  }
}

/* ========== 5. Mindre mobil (≤ 600px) ========== */
@media (max-width: 600px) {
  .ajg-about {
    padding: 56px 16px;
  }

  .ajg-about-title h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .ajg-about-text p {
    font-size: 15px;
    line-height: 1.55;
  }

  .ajg-about-badges {
    gap: 6px;
  }

  .ajg-badge {
    font-size: 12.5px;
    padding: 6px 10px;
  }
}

/* ========== 6. Ekstremt små skjermer (≤ 420px) ========== */
@media (max-width: 420px) {
  .ajg-about {
    padding: 44px 14px;
  }

  .ajg-about-text p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .ajg-badge {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ========== 7. Veldig små skjermer (≤ 480px) – CTA full bredde ========== */
@media (max-width: 480px) {
  .ajg-hero {
    padding-block: 40px 48px;
    padding-inline: 16px;
    background-color: #ffffff;
  }

  .ajg-text h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .ajg-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .ajg-btn,
  .ajg-btn-ghost,
  .ajg-call {
    width: 100%;
    justify-content: center;
  }

  .ajg-about {
    padding-inline: 16px;
  }

  .ajg-about-title h2 {
    font-size: 20px;
  }

  .ajg-checks li {
    font-size: 15px;
  }
}

/* ========== 8. PRINT – ryddig ========== */
@media print {
  .ajg-hero {
    padding: 24px 0;
    background-color: #ffffff;
  }

  .ajg-media {
    display: none;
  }

  .ajg-btn,
  .ajg-btn-ghost,
  .ajg-call {
    border: 1px solid #999;
    background: transparent;
    color: #000;
  }
}


/* ===== Tre-boks seksjon (samme look) ===== */
.features-1 {
  background: #fff;
  margin: 100px 0;
  padding-bottom: 100px;
}
.features-wrap-1 {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* som i eksempelet – delte grenser */
  border: 1px solid #afb6c9;
  border-radius: 6px;
}
@media (max-width: 960px) {
  .features-wrap-1 {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
}

.feature-1 {
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
.feature-1:last-child {
  border-right: none;
}
@media (max-width: 960px) {
  .feature-1 {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .feature-1:last-child {
    border-bottom: none;
  }
}

.feature-icon-1 {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
}
.feature-icon-1 svg {
  width: 56px;
  height: 56px;
  display: block;
}

.feature-1 h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 8px 0 8px;
  font-weight: 700;
  color: #0f172a;
}
.feature-1 p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
  max-width: 42ch;
  margin-inline: auto;
}

/* Mørk rød badge som i forbildet */
.features--moving svg linearGradient stop:first-child {
  stop-color: #398608;
}
.features--moving svg linearGradient stop:last-child {
  stop-color: #398608;
}

/**/
/* ========= PRISSEKSJON ========= */
:root {
  --pb-max: 1280px;
  --pb-fg: #0f172a;
  --pb-muted: #424957;
  --pb-border: #a2aaba;
  --pb-accent: #0f9201; /* primær aksent – bytt til profilfarge ved behov */
  --pb-accent-weak: #fdecee;
  --pb-radius: 14px;
}

.price-block {
  background: #f4f0ecba;
  color: var(--pb-fg);
  padding: 50px 0;
}
.price-wrap {
  max-width: var(--pb-max);
  margin: 0 auto;
  padding: 24px;
}
#price-title {
  font-size: clamp(34px, 4vw, 42px);
  margin: 6px 0 6px;
}
.price-sub {
  color: var(--pb-muted);
  margin: 0 0 16px;
  font-size: 20px;
}

/* Pakke-velger */
.price-packages {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.pkg-btn {
  border: solid #222 1px;
  color: #1a1313;
  border-radius: 999px;
  margin-top: 20px;
  margin-bottom: 50px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.06s;
}
.pkg-btn:hover {
  transform: translateY(-1px);
}
.pkg-btn.is-active {
  background: #053c38;
  color: #fff;
}

/* Prislinjer */
.price-list {
  border-top: 1px solid var(--pb-border);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 19px 0;
  border-bottom: 1px solid var(--pb-border);
}
.price-row h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.price-row p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--pb-muted);
  line-height: 1.6;
}
.price-tag {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 120px;
  text-align: right;
}
.amount {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.2px;
}
.unit {
  color: var(--pb-muted);
  font-size: 13px;
}

/* Merknader */
.price-notes {
  margin-top: 14px;
  color: #374151;
}
.price-notes p {
  margin: 0.2rem 0 0.6rem;
  color: var(--pb-muted);
}
.price-notes ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* CTA */
.price-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: var(--pb-accent-weak);
  color: var(--pb-accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}
.pill-ico {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--pb-accent);
  color: #fff;
}
.cta-outline {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--pb-accent);
  color: var(--pb-accent);
  text-decoration: none;
  font-weight: 700;
}
.cta-outline:hover {
  background: var(--pb-accent);
  color: #fff;
}

.form-contact {
  padding: 60px 0;
  background-color: #0c2738;
}
.grid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 40px 0;
}
.form-info h2 {
  color: #ebfffa;
  font-size: 55px;
    font-family: "Bricolage Grotesque", sans-serif;

  font-weight: 600;
  max-width: 90%;
  line-height: 1.1;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 10px;
  max-width: 600px;
  padding-top: 50px;
}
.contact-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-details h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}
.contact-details p {
  margin: 6px 0;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}
.contact-details a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  display: inline-block;
  margin-top: 8px;
}

.form-info h6 {
  font-size: 18px;
  margin-top: 30px;
  color: #fff;
  font-weight: 600;
  max-width: 500px;
  margin-bottom: 80px;
}

.form-input {
  width: 100%;
  padding-left: 40px;
}
.form-input span {
  color: #d7ffd9f6;
  font-size: 20px;
}
label {
  display: block;
  font-size: 18px;
  color: #eaffd8;
  font-weight: 500;
  margin: 15px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 3px;
  margin-bottom: 16px;
  border: none;
  resize: vertical;
  background: #fff;
  color: #111827;
}
textarea::placeholder {
  color: #6b7280;
}
input[type="file"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 6px;
  background: #ffffffb0;
  border-radius: 3px;
  border: none;
}
.file-hint {
  display: block;
  color: #cfead1;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.fieldset {
  border: 0;
  padding: 0;
  margin: 10px 0 6px;
}
.fieldset legend {
  display: block;
  font-size: 18px;
  color: #eaffd8;
  font-weight: 600;
  margin: 10px 0 8px;
}
.fieldset legend span {
  color: #e2ffdaf6;
}
.choice-grid {
  display: grid;
  gap: 10px 18px;
}
.choice-grid.three {
  grid-template-columns: repeat(3, minmax(140px, 1fr));
}
.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff10;
  border: 1px solid #1c3a4b;
  border-radius: 8px;
  padding: 10px 12px;
  color: #eaffd8;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1a7600;
}
.field-hint {
  color: #ffb3b3;
  margin: 6px 0 0;
}
.tiny-note {
  margin: 8px 0 0;
  color: #cfead1;
  font-size: 0.95rem;
}

input[type="submit"] {
  background: #1a7600;
  color: #fff;
  padding: 19px 30px;
  border: 0;
  border-radius: 999px;
  font-size: 20px;
  margin-top: 20px;
  cursor: pointer;
}
input[type="submit"]:hover {
  opacity: 0.9;
}

/* Tablet / mobil – info-kolonne over, skjema under */
@media (max-width: 768px) {
  .grid-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-input,
  .form-info {
    padding-left: 0;
    width: 100%;
  }

  .contact-image img {
    width: 110px;
    height: 110px;
  }

  .contact-details h3 {
    font-size: 20px;
  }

  .contact-details p {
    font-size: 14px;
    margin-top: -5px;
  }

  .form-info h2 {
    font-size: 32px;
  }

  /* 👉 behold TO kolonner for Navn/Telefon og E-post/Tjeneste,
     akkurat som på bildet, så lenge skjermen ikke er helt smal */
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .choice-grid.three {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

/* Helt små mobiler – la feltene stacke for lesbarhet */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  label {
    font-size: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 15px;
  }

  input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* Evt. annet du hadde fra før */
@media (max-width: 520px) {
  .choice-grid.three {
    grid-template-columns: 1fr;
  }
}

/* Denne delen hørte til pris-tabellen din – lar den stå urørt */
@media (max-width: 640px) {
  .price-row {
    grid-template-columns: 1fr;
  }
  .price-tag {
    align-items: flex-start;
    text-align: left;
  }
}

:root {
  --ink: #0e1116;
  --muted: #5c6670;
  --brand: #e63946; /* rød aksent – bytt til din farge */
  --brand-weak: #ffe8ea;
  --surface: #ffffff;
  --line: #e8edf2;
}
.moving-info {
  padding: 142px 24px;
  background-color: #ffffff;
}
.moving-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
}
.moving-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 10px;
  font-size: 0.9rem;
}
.moving-content h2 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.3;
  max-width: 440px;
  color: #042432;
}
.lede {
  margin: 0 0 18px;
  color: #292121;
  font-size: 1.05rem;
  line-height: 1.6;
}
.moving-content a {
  color: var(--brand);
}
.benefits {
  margin: 0 0 26px;
  padding-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  font-size: 1rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  color: #022b28;
  gap: 14px;
  align-items: center;
}
.btn-fl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid #021f1d;
  margin-top: 20px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
}

.btn-outline {
  color: #022b28;
}

.btn-outline a {
  color: #022b28;
}
.btn:hover {
  transform: translateY(-1px);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-left: 6px;
}

@media (max-width: 960px) {
  .moving-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .moving-media {
    order: -1;
  }
  .moving-info {
    padding: 56px 16px;
  }
}

:root {
  --bg: #0b0c0e;
  --card: #ffffff;
  --ink: #0e1116;
  --muted: #5c6670;
  --brand: #6cc24a;
  --line: #e8edf2;
}

/* Seksjon & container */
.pricing-area {
  padding: 72px 24px; /* mer luft over/under og på sidene */
  background: linear-gradient(180deg, #f8fafc, #f4f7fb);
}

/* Topptekst */
.section-head-1 h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  color: #1a1f26;
}
.vat-note {
  margin: 0 0 20px; /* ekstra avstand til tabellen */
  color: var(--muted);
  font-size: 1rem;
}

/* Tabellramme */
.table-wrap {
  margin-top: 28px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0; /* vi øker luft via padding */
}

/* Tabellhoder */
.price-table thead th {
  background: #101828;
  color: #fff;
  text-align: left;
  padding: 18px 22px; /* mer padding */
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}

/* Celler og rader */
.price-table tbody th,
.price-table td {
  padding: 18px 22px; /* mer høyde og side-luft */
  border-top: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.45;
  font-size: 1rem;
}
.price-table tbody th {
  font-weight: 700;
}
.price-table tbody tr:nth-child(even) {
  background: #fbfdff;
}
.price-table tbody tr:hover {
  background: #f3f7fd;
} /* subtil hover for lesbarhet */
.price-table td {
  white-space: nowrap;
}

/* Notat-liste */
.notes {
  margin: 28px 0 0;
  padding-left: 22px;
  color: var(--muted);
  display: grid;
  gap: 10px; /* mer luft mellom punktene */
  font-size: 1rem;
}

/* Mobil: god scroll + luft */
@media (max-width: 720px) {
  .pricing-area {
    padding: 56px 16px;
  }
  .table-wrap {
    overflow: auto;
  }
  .price-table {
    min-width: 760px;
  } /* bredere “canvas” for luft når man scroller */
}

/* Skjermleserhjelp */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/**********************************/
/*      MEDIA QUARY       */
/**********************************/
@media (max-width: 1024px) {
  .languages img {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    display: block;
  }

  .navbar img {
    height: 55px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header {
    backdrop-filter: blur(10px);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    gap: 0;
    flex-direction: column;
    width: 100%;
      background-color: #04171e;
 /* Sett bakgrunnsfargen til hvit */
    backdrop-filter: blur(10px);
    text-align: center;
    transition: 0.3s;
  }

  .nav-item {
    margin: 15px 0;
    align-items: center;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
  }

  .nav-menu.active {
    left: 0;
  }

  .lang-dropdown button {
    color: #fff;
    font-size: 18px;
  }

  .container-sm {
    width: 100%;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 0px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 30px 40px;
    color: #ffffff;
    padding-bottom: 40px;
  }

  .ghost {
    margin-left: 4px;
  }

  .btn-sec .btn-contact,
  .btn-read {
    font-size: 16px;
    padding: 12px 20px;
    width: 100%;
    margin: 5px 0;
  }

  .mem {
    width: 100%;
    display: grid;
  }

  .mem-cont {
    grid-template-columns: 1fr;
    display: grid;
  }

  .saa {
    padding: 0;
    padding-top: 20px;
  }

  .cont-saa h2 {
    font-size: 23px;
    font-weight: 800;
  }

  .icons {
    padding: 40px 0;
    width: 100%;
  }

  .cont-icns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
  }

  .line-icons h2 {
    font-size: 16px;
  }

  .line-icons p {
    font-size: 14px;
  }

  .line-icons img {
    width: 24%;
  }

  .utl-info {
    display: grid;
    grid-template-columns: 1fr;
  }

  .r-utl {
    order: 1;
    padding: 10px 0;
  }

  .r-utl h2 {
    font-size: 18px;
    border: 0;
  }

  .r-utl h1 {
    font-size: 26px;
  }

  .r-utl p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
  }

  .iutl {
    order: 2;
  }

  .iutl img {
    height: auto;
  }

  .btn-demo {
    font-size: 14px;
  }

  .btn-start {
    padding: 14px 20px;
    font-size: 14px;
  }

  .qc-content {
    display: grid;

    grid-template-columns: 1fr;
  }

  .qc-content img {
    height: auto;
  }

  .qc-text h4 {
    font-size: 18px;
    border: 0;
  }

  .qc-text {
    padding: 10px;
  }

  .qc-text h2 {
    font-size: 32px;
  }

  .qc-text p {
    font-size: 16px;
  }

  .btn-cf {
    padding: 16px 20px;
    font-size: 16px;
  }

  .sub {
    padding: 10px 0;
  }

  .sub-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sub-text {
    padding: 0;
    order: 2;
  }
  .sub-text h2 {
    font-size: 30px;
    width: 80%;
  }

  .sub-text p {
    font-size: 16px;
  }

  .im-sub img {
    height: auto;
    order: 1;
  }

  .cont-numbrs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .flx-numbrs {
    width: 100%;
  }

  .flx-numbrs h1 {
    font-size: 24px;
  }

  .flx-numbrs h6 {
    font-size: 14px;
  }

  .accordion button {
    font-size: 16px;
  }

  /*SERVINGS*/
  .servings {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cont-serving h3 {
    font-size: 22px;
  }

  .cont-serving p {
    font-size: 16px;
  }

  .btn-contact {
    padding: 12px 20px;
    font-size: 16px;
  }

  .plan li {
    font-size: 14px;
  }

  .plan i {
    font-size: 14px;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .info-side {
    margin-top: 10px;
  }

  .info {
    padding: 10px;
  }

  .info-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .info-content h3 {
    font-size: 24px;
  }

  .info-content h4 {
    font-size: 18px;
    width: 100%;
    margin-top: 20px;
  }

  .service-content {
    grid-template-columns: 1fr;
    padding: 20px 0;
    margin: 0;
  }

  .service-column h3 {
    font-size: 24px;
  }

  .service-column p {
    font-size: 16px;
    margin-top: 10px;
    color: #333333d7;
  }

  .hero-2 {
    padding: 20px;
    width: 100%;
    overflow: hidden;
  }

  .hero-content-2 h1 {
    font-size: 37px;
  }

  .hero-content-2 p {
    font-size: 16px;
    width: 100%;
  }

  .service-grid {
    padding: 20px;
    padding-top: 50px;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .info-service h2 {
    font-size: 30px;
    width: 100%;
  }

  .info-service p {
    font-size: 16px;
    width: 100%;
  }

  .main-focus {
    padding: 20px;
    overflow: hidden;
  }

  .header-text h2 {
    font-size: 32px;
    max-width: 100%;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .About-section {
    padding: 20px;
  }

  .About-section h2 {
    font-size: 35px;
  }

  .About-section h1 {
    font-size: 70px;
  }

  .chat-cont h1 {
    font-size: 35px;
  }

  .flex_cos {
    grid-template-columns: 1fr;
  }

  .column-cos h1 {
    font-size: 32px;
  }

  .column-cos p {
    font-size: 16px;
    width: 100%;
  }

  .btn-book {
    font-size: 18px;
  }

  .cont-S2P {
    text-align: center;
  }

  .S2P-flex {
    padding-bottom: 20px;
  }

  .S2P-flex h3 {
    font-size: 24px;
    padding: 20px 0;
  }

  .S2P-flex p {
    font-size: 16px;
    font-weight: 500;
  }

  .faq h2 {
    font-size: 25px;
  }

  .flex_cos img {
    width: 100%;
  }

  .about-us p {
    font-size: 16px;
  }

  .trust-container {
    grid-template-columns: 1fr;
    height: 100%;
    padding: 14px;
  }

  .trust-content {
    border-bottom: solid #333 1px;
    padding: 20px;
  }

  /* -- -- */
  .flex-about {
    padding: 20px;
  }

  .column-about {
    grid-template-columns: 1fr;
  }

  .about-content i {
    color: #000;
    font-size: 20px;
    margin-right: 15px;
  }

  .about-content h3 {
    font-size: 16px;
  }

  .trust {
    padding: 20px;
  }

  .content-banner {
    background-color: #004f5d;
  }

  .content-banner h1 {
    font-size: 25px;
    max-width: 500px;
    width: 100%;
  }

  .content-banner .btn-faq {
    font-size: 14px;
  }

  .content-banner .btn-faq:hover {
    opacity: 0.8;
  }

  .info-contact {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 400px;
    width: 100%;
  }

  .footer {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .info-text h1 {
    font-size: 34px;
  }

  .info-text p {
    font-size: 14px;
  }

  .grid-form {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .top-icon {
    width: 100%;
    padding: 20px 0;
  }

  .top-icon p {
    width: 100%;
    margin-top: 30px;
  }

  .form-info h2 {
    font-size: 28px;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .form-input {
    padding: 20px;
  }

  .form-input span {
    font-size: 18px;
  }

  input[type="submit"] {
    width: 100%;
    padding: 14px;
    font-size: 18px;
  }

  .content-icon {
    margin-bottom: 20px;
  }

  .serving h4 {
    font-size: 18px;
  }

  label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .form-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .top-icon p {
    margin-top: 20px;
    font-size: 14px;
  }

  input[type="text"],
  select,
  textarea {
    padding: 12px;
    font-size: 16px;
  }

  input[type="submit"] {
    padding: 12px;
    font-size: 16px;
  }

  label {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .product-grid .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-item {
  background: #fffaf4;
  border: 1px solid #4427015e;
  border-radius: 8px;
  padding: 30px 10px;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: #fff3e0;
  cursor: pointer;
}

.product-item i {
  font-size: 42px;
  margin-bottom: 15px;
  color: #333;
}

.product-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 0;
}

@media (max-width: 480px) {
  .faqs-container {
    padding: 0.8rem;
  }

  .faq-question {
    font-size: 0.8rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* Tablets (landscape phones and small tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .faq-question {
    font-size: 0.5rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}

/* Medium to large tablets and small desktops */
@media (min-width: 769px) and (max-width: 1024px) {
  .faqs-container {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 0.8rem;
  }
}

/* Large desktops */
@media (min-width: 1025px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 1.1rem;
  }
}
