/* Fonts */
:root {
  --default-font: "sans-serif";
  --heading-font: "Playfair Display", serif;

  --nav-font: sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #eeeae5; /* Background color for the entire website, including individual sections */
  --default-color: rgba(
    0,
    0,
    0,
    0.8
  ); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #000000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #eeeae5; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(
    0,
    0,
    0,
    0.8
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #2d2d2d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #eeeae5; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #eeeae5; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgb(
    0,
    0,
    0
  ); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #292929; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #eeeae5;
  --surface-color: #eeeae5;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #eeeae5;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 200;
}
/* Gør headeren hvid og skygget som efter scroll */
body.scrolled-page .header {
  background-color: #eeeae5 !important;
  border-bottom: 1px solid black !important;
}

/* Sørg for at teksten i navigationen bliver sort */
body.scrolled-page .header a,
body.scrolled-page .header .navmenu ul li a {
  color: #000;
}

/* Skift logo til sort version hvis du har det */
body.scrolled-page .header .logo img {
  content: url("/assets/img/logo.png"); /* Skift til din sorte logo-fil */
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: black !important;
  background-color: var(--background-color);
  font-family: sans-serif;
  font-size: 14px !important;
  font-weight: 400;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: black !important;
  font-family: "Playfair Display", serif;
  font-weight: 200;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid white;
}
.header .navmenu a {
  color: white;
  transition: color 0.3s;
  font-weight: 400;
  text-transform: uppercase;
}

/* Når der scrolles */
.header.scrolled {
  background-color: #eeeae5;
  border-bottom: 1px solid black;
}

/* Når der scrolles: sort tekst */
.header.scrolled .navmenu a {
  color: black;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 46px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

/* Standard stil (før scroll) */
.header .btn-getstarted {
  color: white;
  background: none;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid rgb(255, 255, 255);
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}

/* Når der scrolles */
.header.scrolled .btn-getstarted {
  color: rgb(255, 255, 255);
  background: none;
  border: 1px solid rgb(0, 0, 0);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgb(221, 219, 213);
}

/* Mobil/tablet: klik åbner dropdown */
@media (max-width: 992px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
    border: none;
  }

  .header .navmenu {
    order: 3;
  }

  .header.scrolled .navmenu a {
    color: white;
  }

  /* Dropdown skjult som standard */
  .navmenu .dropdown ul {
    display: none;
    background-color: #000000 !important;
    position: static;
  }

  /* Dropdown aktiv når klassen sættes via JS */
  .navmenu .dropdown.dropdown-active ul {
    display: block;
  }

  /* Dropdown skjult som standard */
  .navmenu .dropdown ul {
    display: none;
    background-color: #000000; /* Mørk baggrund */
    list-style: none;
    margin: 0;
    padding: 0;
    position: static; /* Så den ikke overlapper andet indhold */
  }

  /* Aktiv dropdown åbnes af JS */
  .navmenu .dropdown.active > ul {
    display: block;
    padding: 10px 0;
  }

  /* Links i dropdown på mobil */
  .navmenu .dropdown.active > ul a {
    color: white;
    padding: 8px 15px;
    display: block;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 18px 15px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 12px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    text-transform: uppercase;
    font-weight: 400;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .img-nav {
    display: none;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  /* Default: hvid toggler */
  .header .mobile-nav-toggle {
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
  }

  /* Ved scroll: sort toggler */
  .header.scrolled .mobile-nav-toggle {
    color: black;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: white !important;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  /* Underline-animation til menupunkter */
  .navmenu a {
    position: relative;
    text-decoration: none;
  }

  .small-icon-btn {
    padding: 8px 10px !important;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
  }

  .btn-getstarted i {
    font-size: 1.2em;
    color: white !important;
  }

  .btn-getstarted.small {
    padding: 8px;
    gap: 0;
    color: white;
  }

  .navmenu a {
    display: inline-block; /* Begræns bredden til indholdet */
    border-radius: 999px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    width: auto;
    color: #ffffff !important;
    font-size: 20px !important;
    letter-spacing: 1px;
    font-weight: 200 !important;
  }

  .navmenu a.active {
    display: inline-block; /* Begræns bredden til indholdet */
    border-radius: 999px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    width: auto;
    color: #ffffff;
    font-family: "Playfair Display", serif !important;
    text-transform: none;
    font-style: italic;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    justify-content: left;
    text-align: left;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    justify-content: left; /* Centrerer ikoner og tekst horisontalt */
    text-align: left;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    transition: 0.3s;
    background-color: #000000 !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    overflow: hidden;
    /* Sørg for relative position, så pseudo-element fungerer */
    position: fixed;
  }

  /* Sort overlay med opacity */
  .mobile-nav-active .navmenu::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none; /* Så overlay ikke blokerer klik */
    z-index: 1;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .img-nav {
    width: 300px;
    margin-top: 2vh;
  }
}
/* Flyv ind fra højre */
@keyframes menuFlyInRight {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Når mobilenav åbner */
.mobile-nav-active .navmenu ul li {
  opacity: 0; /* skjul før animation */
  animation: menuFlyInRight 0.6s ease forwards;
}

/* Sekventiel delay for hvert menupunkt */
.mobile-nav-active .navmenu ul li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-active .navmenu ul li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-nav-active .navmenu ul li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-nav-active .navmenu ul li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-nav-active .navmenu ul li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-nav-active .navmenu ul li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-nav-active .navmenu ul li:nth-child(7) {
  animation-delay: 0.7s;
}
.mobile-nav-active .navmenu ul li:nth-child(8) {
  animation-delay: 0.8s;
}
.mobile-nav-active .navmenu ul li:nth-child(9) {
  animation-delay: 0.9s;
}
.mobile-nav-active .navmenu ul li:nth-child(10) {
  animation-delay: 1s;
}

/* Blog-side styling */
#blog {
  padding: 100px 0 60px;
  background-color: var(--background-color);
}

#blog h1 {
  font-size: 3rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 60px;
  color: #1c1c1c;
  font-family: "Playfair Display", serif;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.blog-card .btn-primary {
  background-color: black;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 200;
  font-family: sans-serif;
  letter-spacing: 1px;
  width: 25% !important;
  display: inline-block;
  border-radius: 20px;
}

.blog-card .btn-primary:hover {
  background-color: #292929 !important;
  color: white;
}

.blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-content h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.blog-card-content p {
  flex: 1;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
}

.blog-card-content a {
  margin-top: 14px;
  color: #000000;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* -------------------- Blog Post Styling -------------------- */
#blog-post {
  padding: 100px 0;
  font-family: "Playfair Display", serif;
  color: #000000;
  background-color: var(--background-color);
}

#blog-post article {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--background-color);

  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#blog-post h1 {
  font-size: 2.8rem;
  font-weight: 200;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.2;
}

#blog-post .post-meta {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 30px;
  font-family: sans-serif;
}

#blog-post img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 30px;
}

#blog-post #post-content {
  font-size: 14px;
  color: #000000;
}

#blog-post #post-content p {
  margin-bottom: 20px;
  font-family: sans-serif;
  font-size: 14px;
}

#blog-post #post-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #222;
}

#blog-post #post-content a {
  color: #000000;
  transition: color 0.3s;
  text-decoration: underline;
}

#blog-post #post-content a:hover {
  color: #8a8a8a;
}

#blog-post #post-content ul,
#blog-post #post-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
  font-family: sans-serif;
  font-size: 14px;
}

#blog-post #post-content blockquote {
  border-left: 4px solid #000000;
  padding-left: 20px;
  color: #555;
  font-style: italic;
  margin: 30px 0;
}

#blog-post .btn-primary {
  background-color: black;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 200;
  font-family: sans-serif;
  letter-spacing: 1px;
  width: auto !important;
  display: inline-block;
  border-radius: 20px;
}

.back-to-blog {
  display: flex; justify-content: center;}


@media (max-width: 768px) {
  #blog-post article {
    padding: 25px;
  }

  #blog-post h1 {
    font-size: 2rem;
  }

  #blog-post #post-content {
    font-size: 1rem;
  }
  .blog-card{
    padding: 5px !important;
  }

}

/* Responsiv padding */
@media (max-width: 768px) {
  #blog {
    padding: 60px 20px;
  }
  #blog h1 {
    font-size: 2.5rem;
  }
  .blog-card .btn-primary {width: 70% !important;}


}


/* Container for blogkort */
#blog-list {
  display: grid;

    grid-template-columns: 1fr 1fr; /* 2 kolonner på desktop */
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

/* Selve blogkortet */
.blog-card {
  background-color: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}


/* Billede */
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* Indhold */
.blog-card h2 {
  font-size: 1.4rem;
  margin: 1rem;
  color: #000000;
}

.blog-card p {
  margin: 0 1rem 1rem 1rem;
  color: #000000;
  line-height: 1.5;
  font-size: 14px;
  font-family: sans-serif;
}

/* Læs mere knap */
.blog-card .btn {
  margin: 0 1rem 1rem 1rem;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #000000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.blog-card .btn:hover {
  background-color: #005bb5;
}

/* Responsive tekstjustering på mindre skærme */
@media (max-width: 480px) {
  .blog-card img {
    height: 150px;
  }
  .blog-card h2 {
    font-size: 1.2rem;
  }
  .blog-card p {
    font-size: 0.9rem;
  }
}


/* Blog tabel */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  font-family: sans-serif;
}

table th {
  background-color: var(--background-color);
  color: #333;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
}

table td {
  padding: 1rem;
  color: #000000;
}

table tr:nth-child(even) {
  background-color: rgb(245, 244, 243);
}



table th:first-child, 
table td:first-child {
  width: 20%;
}





/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white !important;
  background-color: rgb(0, 0, 0);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
  text-transform: uppercase;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: white !important;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
  text-transform: none;
  font-family: "Playfair Display", serif !important;
  color: white !important;
  font-style: italic;
}

.footer .footer-links {
  margin-bottom: 30px;
  font-size: 200;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: white !important;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: white !important;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--background-color, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader-logo {
  width: 150px;
  height: auto;
  opacity: 0;
  animation: logo-fade 2s ease-in-out infinite;
}

@keyframes logo-fade {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

.design-section {
  padding: 6rem 2rem;
  background-color: var(--background-color, #f9f9f9);
  color: var(--text-color, #111);
  padding-left: 8vw;
}

.design-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.design-content .text {
  flex: 1 1 500px;
}

.design-content .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.design-content .text p {
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.design-content .text ul {
  list-style: none;
  padding: 0;
}

.design-content .text ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 14px;
  margin-bottom: 0.6rem;
}

.design-content .text ul li i {
  color: var(--accent-color, #e63946);
  font-size: 1.2rem;
}

.design-content .image {
  flex: 1 1 400px;
  text-align: center;
}

.design-content .image img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

.page-title h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 20px;
  position: relative;
  text-align: center; /* Centrer alt tekstindhold */
}

.section-title h2 {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  line-height: 1px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
  font-family: sans-serif;
  text-transform: uppercase;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 200;
  font-family: var(--heading-font);
}

/* Startsektion  */
.startsektion {
  position: relative;
  background-image: url("/assets/img/computer-og-mobil-webdesign.jpg"); /* Udskift med dit billede */
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding-top: 200px;

}

.startsektion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.553);
}

.startsektion-content {
  position: relative;
  max-width: 700px;
  z-index: 1;
}

.badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge {
  display: inline-block; /* ← dette sikrer tilpas bredde */
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 12px;
  font-weight: 200;
  white-space: nowrap;
}

.badge.dark {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.startsektion h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
  color: white !important;
}

.cta-button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0.2rem 3rem;
  border-radius: 50px;
  font-size: 2.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .startsektion {
    height: 100vh;
    padding-top: 15vh;
  }
  .startsektion h1 {
    font-size: 2.8rem;
    font-weight: 600;
  }

  .badges {
    justify-content: center;
    gap: 0.5rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }
}

/*--------------------------------------------------------------
# Customer Case Section
--------------------------------------------------------------*/
.kundecase {
  padding: 6rem 2rem;
}

.kundecase-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.kundecase-content h2 {
  font-size: 1rem;
  color: #222;
}

.kundecase-content p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #000000;
  letter-spacing: 0.2px;
  text-align: left;
}

.kundecase-billeder {
  margin-top: 3rem;
}

.billede-galleri {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  margin-top: 2rem;
}

.billede-galleri img,
.visitkort img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.visitkort {
  margin-top: 3rem;
  max-width: 100%;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  box-sizing: border-box;
}

.visitkort h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px 0;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Baggrundsbilleder – mobil/desktop */
.hero .hero-background .desktop-img,
.hero .hero-background .mobile-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }

  .mobile-img {
    display: block;
  }
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.138);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 40px 15px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero h1 {
  font-size: 56px;
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: "Playfair Display", serif;
  color: white !important;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background: rgb(0, 0, 0);
  color: white;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .hero-actions .btn-primary:hover {
  background: grey;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  color: black;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 1px solid black;
  font-family: sans-serif;
  border-radius: 50px;
  text-transform: uppercase;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: var(--accent-color);
}

.hero .hero-actions .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 25px;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
  font-family: sans-serif;
  text-transform: uppercase;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: calc(50% - 10px);
}

.hero .feature-card:hover {
  transform: translateY(-5px);
}

.hero .feature-card i {
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 400;
  color: white;
  font-family: sans-serif;
}

.hero .feature-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
    margin-bottom: 10vh;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .hero-actions {
   display: none;
  }

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    padding: 16px;
  }

  .hero .feature-card i {
    font-size: 24px;
  }

  .hero .feature-card span {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero .feature-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero .feature-card span {
    font-size: 11px;
  }
}
/* === Hero baggrund === */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-background img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.desktop-img {
  display: block;
}

.mobile-img {
  display: none;
}

/* === Skift billede på mobil === */
@media (max-width: 768px) {
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
}

/* === Hero indhold === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Standard: centreret */
  overflow: hidden;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* === Ryk hele containeren ned på mobil === */
@media (max-width: 768px) {
  .hero {
    justify-content: flex-end; /* Placerer containeren nederst */
    padding-bottom: 10px;
  }
}

/* Sticky knap */
.contact-sticky-btn {
  position: fixed;
  bottom: 15px;
  left: 20px;
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Italiana", sans-serif;
  text-transform: uppercase;
}
.contact-sticky-btn:hover {
  background-color: #000000b8;
  color: #fff;
}

/* Modal baggrund */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.662);
}

/* Modal indhold */
.contact-modal-content {
  background: #eeeae5;
  padding: 30px;
  border-radius: 12px;
  max-width: 320px;
  margin: 200px auto;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Luk-knap */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Valg-knapper */
.contact-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-option {
  background-color: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 300;
  transition: background-color 0.2s ease;
}

.contact-option:hover {
  background-color: #000000c0;
  color: white;
}

.modal-body p {
  margin-bottom: 16px;
  font-size: 25px;
  color: #000000;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.modal-content{background-color: var(--background-color);}
.modal-header{border-bottom: none;}


/*--------------------------------------------------------------
# Priser Hero Section
--------------------------------------------------------------*/
/* Hero sektion */
.priser-hero {
  height: 100vh;
  background-image: url('https://i.pinimg.com/1200x/0e/f6/b8/0ef6b8d4bb84be062e2b5311b290f6c8.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Tekst */
.priser-hero-content h1 {
  font-size: 3.5rem;
  color: white !important;
}

.priser-hero-content p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Pil ned */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: white;
  opacity: 0.8;
  cursor: pointer;
}


/*--------------------------------------------------------------
# Services Hero Section
--------------------------------------------------------------*/
/* Hero sektion */
.services-hero {
  height: 100vh;
  background-image: url('https://i.pinimg.com/1200x/72/3a/a8/723aa843caff0bb0e54348540c0c5a54.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Tekst */
.services-hero-content h1 {
  font-size: 3.5rem;
  color: white !important;
}

.services-hero-content p {
  font-size: 1.5rem;
  margin-top: 10px;
}

/* Pil ned */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: white;
  opacity: 0.8;
  cursor: pointer;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .about-image {
  overflow: hidden;
  border-radius: 20px;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
    right: 0;
    bottom: 20px;
    padding: 1rem;
    min-width: 120px;
  }

  .about .about-image .experience-badge .years {
    font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  font-weight: 200;
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}

.about .about-content .lead {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.about .about-content p {
  margin-bottom: 1rem;
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid black;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 14px;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.about .about-content .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: black;
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 400;
  color: white;
  font-size: 12px;
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 14px;
  margin-bottom: 1.25rem;
  font-weight: 200;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
  color: black !important;
}

.slider-prev i,
.slider-next i {
  color: black !important;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: black !important;
}

.about
  .testimonial-section
  .testimonial-intro
  .swiper-nav-buttons
  button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white !important;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
  color: black !important;
}

.about
  .testimonial-section
  .testimonial-intro
  .swiper-nav-buttons
  button
  i:hover {
  font-size: 1.25rem;
  color: white !important;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
}

.about .testimonial-section .testimonial-item .rating {
  color: #000000;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-header {
  margin-bottom: 60px;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services h4 {
  font-family: "Playfair Display", serif;
  font-weight: 200;
  font-size: 20px;
  font-style: italic;
}

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.services .service-card h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

.services .service-card h3 a:hover {
  color: var(--accent-color);
}

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover::before {
  opacity: 1;
  visibility: visible;
  background-color: var(--surface-color);
}

.services .service-card:hover h3 a {
  color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
  color: var(--accent-color);
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

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

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

/*--------------------------------------------------------------
# Prisberegner Section
--------------------------------------------------------------*/

.type-options input[type="radio"] {
  display: none; /* Skjul radio knapperne */
}

.type-options label {
  display: block;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  user-select: none;
  background-color: transparent !important;
  font-weight: 400;
}

/* Når valgmulighed er valgt */
.type-options input[type="radio"]:checked + label {
  border-color: #000000;
  background-color: black !important;
  color: white;
  font-weight: 400;
}

/* Hover effekt, når man holder musen over label */
.type-options label:hover {
  border-color: #000000;
  background-color: #424242;
}

.website-calculator {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem 2.5rem;
  color: #222;
  font-family: sans-serif;
  font-weight: 400;
}

.centered-button {
  display: block !important;
  margin: 0 auto 0 auto !important;
  margin-top: 20px !important;
  font-weight: 200 !important;
}

/* Skjul alle steps, kun aktiv vises */
.step {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.1s ease, max-height 0.1s ease;
}

.step.active {
  opacity: 1;
  max-height: 1000px; /* stor nok til at vise indhold */
  overflow: visible;
}

label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 400;
  font-size: 18px;
  color: #222;
  text-align: center !important;
}

select {
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 14px;
  background: transparent !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 10px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  cursor: pointer;
}

.total {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-top: 1rem;
}

.feature-group {
  margin-bottom: 1rem;
}

.feature-group.webshop {
  margin-top: 0.5rem;
}

.total {
  margin-top: 1.5rem;
  text-align: center;
}

.estimated-price {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.2;
}

.extra-note {
  font-size: 25px;
  color: #000000;
  margin-top: 0;
  font-weight: 400;
}
.step p {
  font-weight: 400;
}

#prisberegner .btn-primary {
  background-color: black;
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 400;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

.steps .step-item:last-child {
  margin-bottom: 0;
}

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid black;
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
  border: 1px solid black;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

.steps p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 2rem;
  border: 1px solid black;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 200;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  color: black;
  font-weight: 400;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 14px;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 400;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 12px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 50%;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background-color: rgba(255, 255, 255, 0); /* fallback farve */
  backdrop-filter: blur(15px); /* blur-effekt */
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 400;
  color: black;
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
  color: black;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
    width: 200px;
  }
  .call-to-action .features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.1rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
/* Slider container */
.slider-container {
  position: relative;
  max-width: 100%;
  margin: 40px auto;
  overflow: hidden;
  padding: 0 15px; /* lidt margin på mobil */
}

/* Slider track */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Single slide */
.slide {
  flex: 0 0 100%; /* mobil: altid fuld bredde */
  box-sizing: border-box;
  text-align: center;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 800px; /* undgå for høje billeder */
  object-fit: cover;
  border-radius: 10px;
}

.slide p {
  padding: 15px;
  font-size: 14px;
  margin: 0;
}

/* Navigation arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  background-color: transparent;
}

.prev { left: 10px; }
.next { right: 10px; }

/* --- Desktop styles --- */
@media (min-width: 768px) {
  .slider-container {
    max-width: 900px; /* desktop bredde */
    padding: 0;
  }

  .slide p {
    font-size: 16px;
    padding: 20px;
  }

  .prev, .next {
    font-size: 24px;
    padding: 15px;
  }
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 20px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

#testimonials .btn-primary {
  background: rgb(0, 0, 0);
  color: white;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 400;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  font-weight: 400;
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 200;
  color: var(--heading-color);
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 14x;
  font-weight: 400;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid black;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  overflow: hidden;
  background: var(--surface-color);
  border-radius: 10px;
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: rgb(0, 0, 0) !important;

  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
  font-style: italic;
}

#load-more-btn {
  background-color: black;
  border-color: var(--accent-color);
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: 400;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: white;
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: rgb(62, 62, 62);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 16/9;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/* Begræns højde og fade */
#portfolio-wrapper.limited {
  max-height: 1650px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  #portfolio-wrapper.limited {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  #portfolio-wrapper.limited {
    max-height: 800px;
  }
}
#portfolio-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(to top, #eeeae5, transparent);
  pointer-events: none;
  z-index: 1;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 2px solid black;
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -55px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 50px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  font-style: italic;
}

.pricing .plan-header p {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 20px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 400;
}

.pricing .plan-pricing .amount {
  font-size: 35px;
  font-weight: 400;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: black;
  font-weight: 400;
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
  display: flex;
  justify-content: center;
  font-weight: 400;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: black;
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 50%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 4 00;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 30px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.toggle-button {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  transition: all 0.2s ease-in-out;
  border-radius: 50px;
  font-size: 14px;
}

.toggle-button:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid black;
}

.toggle-button.active-toggle {
  background-color: #000;
  color: #fff;
}

.pricing .ideal-for-section {
  padding: 0 30px 20px;
  text-align: center;
}

.pricing .ideal-for-section span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 6px 14px;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Brandingpakker
--------------------------------------------------------------*/
/* Accordion styling */
.packages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package {
  border-radius: 8px;
  overflow: hidden;
}
.package-toggle {
  all: unset; /* Fjerner AL default browser styling */
  box-sizing: border-box;

  width: 100%;
  background: var(--background-color);
  padding: 0.5rem;
  text-align: left;
  font-size: 20px;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: black;

  -webkit-tap-highlight-color: transparent; /* Fjerner blå highlight på mobil */
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.package-toggle:focus,
.package-toggle:active {
  outline: none;
  color: black;
}

.package-toggle i {
  transition: transform 0.3s ease;
}

.package-content {
  max-height: 0;
  overflow: hidden;
  background: var(--background-color);
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.package.active .package-content {
  max-height: 300px; /* tilstrækkelig til tekst */
  padding: 1rem;
}

.package.active .package-toggle i {
  transform: rotate(90deg);
  color: black;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-family: "Playfair Display", serif;
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
  font-weight: 400;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid black;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: sans-serif;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-weight: 400;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .how-we-work .steps-grid {
    gap: 1.5rem;
  }
}

.how-we-work .step-card {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.how-we-work .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.how-we-work .step-card:hover .step-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.how-we-work .step-card:hover .step-arrow {
  transform: translateX(5px);
}

.how-we-work .step-card .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 80%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 90%) 100%
  );
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.how-we-work .step-card .step-number {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #000 20%) 100%
  );
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.how-we-work .step-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .how-we-work .step-card h3 {
    font-size: 1.2rem;
  }
}

.how-we-work .step-card p {
  font-size: 0.95rem;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.how-we-work .step-card .step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}

@media (max-width: 991px) {
  .how-we-work .step-card .step-arrow {
    display: none;
  }
}

.how-we-work .step-card:last-child .step-arrow {
  display: none;
}

@media (max-width: 991px) {
  .how-we-work .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-we-work .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-we-work .step-card {
    padding: 2rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Tilføj disse for at centrere ikon og tekst */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 10px;
  font-family: sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: black;
  font-size: 14px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale();
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border: 1px solid black;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border: 1px solid black;
}

.contact
  .contact-form-wrapper
  .form-group
  .input-with-icon
  .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact
  .contact-form-wrapper
  .form-group
  .input-with-icon
  .form-control::placeholder {
  color: black;
}

.contact
  .contact-form-wrapper
  .form-group
  .input-with-icon
  textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 1.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  overflow: hidden;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider {
  position: relative;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-wrapper {
  height: auto !important;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-slide
  img {
  object-fit: cover;
  width: 100%;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:after,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:after {
  font-size: 16px;
  color: black;
  font-weight: bold;
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:hover,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-next:hover:after,
.portfolio-details
  .portfolio-details-media
  .main-image
  .portfolio-details-slider
  .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 200;
  border-radius: 20px;
  color: black;
  transition: all 0.3s ease;
  border: 1px solid black;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .badge-wrapper
  .project-badge {
  display: inline-block;
  padding: 8px 16px;
  color: black;
  border-radius: 30px;
  border: 1px solid black;
  font-weight: 400;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .date-client
  .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: black;
}

.portfolio-details
  .portfolio-details-content
  .project-meta
  .date-client
  .meta-item
  i {
  margin-right: 6px;
  color: black;
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 200;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: "Playfair Display", serif !important;
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
  color: black;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: black;

  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: black;

  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)
  i {
  color: black;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-header
  .accordion-button
  i {
  font-size: 1.1rem;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details
  .portfolio-details-content
  .project-overview
  .project-accordion
  .accordion-item
  .accordion-body
  p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details
  .portfolio-details-content
  .project-features
  .feature-list
  li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: black;
}

.portfolio-details
  .portfolio-details-content
  .project-features
  .feature-list
  li
  i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: black;
  color: white;
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details
  .portfolio-details-content
  .cta-buttons
  .btn-next-project:hover
  i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }

  .portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
    width: fit-content !important;
  }
}

body {
  animation: fadeIn 0.8s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details {
  margin-top: 10% !important;
}
.service-details .service-header {
  margin-bottom: 40px;
}

.service-details .service-header h1 {
  font-size: 32px;
  font-weight: 200;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  font-family: "Playfair Display", serif !important;
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
  font-weight: 400;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-header .lead {
  font-size: 14px;
  line-height: 1.7;
  color: black;
  font-weight: 400;
}

.service-details .service-tabs {
  margin-bottom: 50px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 200;
}

.service-details .service-tabs .tab-content .content-block p {
  color: black;
  margin-bottom: 15px;
  line-height: 1.7;
}

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: black;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 200;
  font-size: 14px;
  z-index: 2;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content {
  padding-left: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  h4 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 10px;
}

.service-details
  .service-tabs
  .tab-content
  .process-timeline
  .timeline-item
  .timeline-content
  p {
  color: black;
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details
  .service-tabs
  .tab-content
  .benefit-card:hover
  .benefit-icon
  i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 200;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item:hover
  .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  h5 {
  color: var(--contrast-color);
  font-weight: 200;
  margin-bottom: 5px;
}

.service-details
  .service-gallery
  .service-details-slider
  .portfolio-item
  .portfolio-info
  p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.service-details
  .service-gallery
  .service-details-slider
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: black;
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.671);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: white !important;
  font-size: 24px;
  font-weight: 200;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif !important;
  font-style: italic;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: black;
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating {
  display: flex;
}

.service-details
  .service-sidebar
  .testimonial-card
  .testimonial-header
  .rating
  i {
  color: #000000;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  h5 {
  font-size: 16px;
  font-weight: 200;
  margin: 0 0 5px;
}

.service-details
  .service-sidebar
  .testimonial-card
  .client-info
  .client-details
  span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

.hourly-list {
  list-style: none;
  padding: 0;
}

.hourly-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hourly-list i {
  width: 28px;
  height: 28px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ABONNEMENTER */
.plans {
  background: var(--surface-color);
}

.plan-card {
   height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 2px solid black;
  padding: 30px;
}

.plan-card h4 {
  font-weight: 200;
  margin-bottom: 10px;
  font-size: 32px;
  text-align: center;
  font-style: italic;
  
}

.plan-card .description {
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  flex-grow: 1;
}

.plan-card ul li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #000000;
}

.plan-card ul i {
  color: #000000;
}

.plan-card.featured {
  background: var(--background-color);
  border: 2px solid #000000;
  position: relative;
}

.popular-tag {
    position: absolute;
  top: 20px;
  right: -55px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 400;
  padding: 10px 50px;
  transform: rotate(45deg);
  text-transform: uppercase;
  z-index: 999;
}

.plan-card .price {
  font-size: 28px;
  font-weight: 200;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif !important;
  text-align: center;
}
.plan-card .btn {
  background-color: var(--accent-color) !important;
  color: var(--contrast-color);
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}
