/* Generelle Styles */
:root {
    --primary-color: #8B5A2B; 
    --primary-dark: #704823;
    --secondary-color: #D7BC8D;
    --accent-color: #A67C52;
    --text-dark: #2C2C2C; 
    --text-light: #F5F5F5; 
    --background-light: #FAFAFA; 
    --background-dark: #1A1A1A; 
    --success-color: #4CAF50; 
    --error-color: #F44336; 
    --border-radius: 4px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}
/* Header Styles */
.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Changed to black background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Adjusted shadow for dark theme */
    z-index: 1000;
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    --header-height: var(--header-height-scrolled);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 2rem;
    transition: height var(--transition-medium);
}

/* Logo Styles - Made smaller */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 100px !important; /* Reduced from -30px to -40px */
    width: auto;
    transition: max-height var(--transition-medium);
}

/* Navigation Styles */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    position: relative;
    color: rgba(255, 255, 255, 0.85); /* Changed to light text for dark background */
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.nav-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-menu a:not(.cta-button):hover::after,
.nav-menu a:not(.cta-button).active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Adjusted shadow for dark theme */
    transition: all var(--transition-fast);
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Adjusted shadow for dark theme */
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9); /* Changed to light color for dark background */
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: rgba(20, 20, 20, 0.98); /* Changed to dark background */
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3); /* Adjusted shadow for dark theme */
    z-index: 1001;
    transition: right var(--transition-medium);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Changed border color for dark theme */
}

.mobile-menu-header img {
    height: 35px; /* Made smaller from 40px */
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9); /* Changed to light color for dark background */
    padding: 0.5rem;
}

.mobile-menu nav {
    padding: 2rem 1.5rem;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.85); /* Changed to light color for dark background */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    transition: color var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-color);
}

.mobile-menu .cta-button {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Made darker for better contrast */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
}

/* Hero Section Styles */
/* Hero Section Styles */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
    margin-top: 0;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
    padding: 2rem;
}

.pre-heading {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.3);
}

.primary-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.primary-button:hover i {
    transform: translateX(5px);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.primary-button:hover::before {
    width: 100%;
}

.secondary-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid var(--text-light);
    backdrop-filter: blur(5px);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 90, 43, 0.4);
}

.secondary-button:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
    margin-bottom: 30px;
}

.scroll-indicator span {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-features {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.5rem 0;
    backdrop-filter: blur(5px);
}

.feature {
    display: flex;
    align-items: center;
    margin: 0 2rem;
    color: var(--text-light);
}

.feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.feature span {
    font-weight: 500;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.3s;
}

.slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-delayed {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.slide-in-delayed-more {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.slide-in.active,
.slide-in-delayed.active,
.slide-in-delayed-more.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .hero-features {
        padding: 1.2rem 0;
    }
    
    .feature {
        margin: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
    }
    
    .feature {
        margin: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--background-light);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: var(--transition-medium);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: var(--transition-medium);
        transition-delay: calc(0.05s * var(--item-index, 0));
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-cta {
        margin-top: 1rem;
    }
    
    /* Ændret hero-layout til mobil */
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 80px;
        padding-bottom: 0;
    }
    
    .hero-content {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    /* Ændret bottom-sektion */
    .hero-bottom {
        position: relative;
        width: 100%;
        bottom: auto;
        margin-top: auto;
    }
    
    .scroll-indicator {
        margin-bottom: 10px;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .feature {
        margin: 0.3rem;
        font-size: 0.9rem;
        flex-basis: 100%;
        justify-content: center;
    }
    
    .feature i {
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 65px;
    }
    
    .header.scrolled .logo img {
        max-height: 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .pre-heading {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .primary-button, .secondary-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .feature i {
        font-size: 1.1rem;
    }
    
    /* Ekstra justeringer til meget små skærme */
    .hero-features {
        padding: 0.8rem 0.5rem;
    }
    
    .scroll-indicator {
        display: none; /* Skjul scroll-indikatoren på meget små skærme */
    }
}

/* Om Os Sektion Styles */
.om-os-section {
    padding: 120px 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.pre-heading {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color:white;;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.om-os-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.om-os-image, .om-os-text {
    flex: 1;
}

.image-container {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(139, 90, 43, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
display:none;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 200;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
}

.om-os-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
}

.om-os-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(139, 90, 43, 0.05);
    border-radius: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.primary-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
    position: relative;
    z-index: 10; /* Increased z-index */
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
}
.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

/* Animation Classes */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-left.active,
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .om-os-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .om-os-text h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .om-os-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .om-os-text h3 {
        font-size: 1.6rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
display:none;
    }
    
    .experience-badge .years {
        font-size: 1.6rem;
    }
}
/* Ydelser Sektion Styles */
.ydelser-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
}

/* Background elements */
.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b5a2b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}

.floating-shape {
    position: absolute;
    background-color: rgba(139, 90, 43, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation: float 12s infinite ease-in-out 2s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(5px, -10px) rotate(10deg);
    }
    75% {
        transform: translate(-10px, 5px) rotate(5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pre-heading {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.ydelser-showcase {
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.ydelser-slider {
    margin-bottom: 30px;
    position: relative;
}

.ydelser-list {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #e0e0e0;
    scroll-behavior: smooth;
}

.ydelser-list::-webkit-scrollbar {
    height: 8px;
}

.ydelser-list::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.ydelser-list::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.ydelse-card {
    min-width: 200px;
    padding: 25px 20px;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ydelse-card:last-child {
    margin-right: 0;
}

.ydelse-card.active {
    border-color: var(--primary-color);
    background-color: rgba(139, 90, 43, 0.03);
}

.ydelse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ydelse-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.ydelse-card.active .ydelse-icon {
    background-color: var(--primary-color);
}

.ydelse-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.ydelse-card.active .ydelse-icon i {
    color: #fff;
}

.ydelse-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin: 0;
}

.ydelse-card.active h3 {
    color: var(--primary-color);
}

/* MAJOR CHANGE: Completely revised the details section to use position:relative instead of absolute */
.ydelse-details {
    position: relative;
    margin-bottom: 30px;
}

.ydelse-detail {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: none; /* Hide by default */
    flex-direction: row;
    gap: 30px;
    z-index: 2;
    transition: opacity 0.5s ease;
}

.ydelse-detail.active {
    display: flex; /* Show when active */
}

.detail-content h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.detail-features {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-features li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.detail-features li:hover {
    transform: translateX(5px);
}

.detail-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.detail-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.detail-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.3);
}

.ydelse-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    display: none;
}

.nav-prev, .nav-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-prev:hover, .nav-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.ydelse-progress {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.progress-bar {
    width: 150px;
    height: 4px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 2px;
    margin-right: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 9.09%; /* 1/11 = 9.09% */
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.ydelse-image {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ydelse-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ydelse-image img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .ydelser-section {
        padding: 100px 0;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .detail-features {
        grid-template-columns: 1fr;
    }
    
    .ydelse-detail {
        flex-direction: column;
    }
    
    .ydelse-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ydelser-section {
        padding: 80px 0;
    }
    
    .ydelse-card {
        min-width: 160px;
        padding: 20px 15px;
    }
    
    .ydelse-icon {
        width: 50px;
        height: 50px;
    }
    
    .ydelse-icon i {
        font-size: 1.2rem;
    }
    
    .ydelse-card h3 {
        font-size: 1rem;
    }
    
    .ydelse-detail {
        padding: 30px;
    }
    
    .detail-content h3 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .progress-bar {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .ydelser-section {
        padding: 60px 0;
    }
    
    .ydelse-card {
        min-width: 140px;
        padding: 15px 10px;
    }
    
    .ydelse-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .ydelse-card h3 {
        font-size: 0.9rem;
    }
    
    .ydelse-detail {
        padding: 25px 20px;
    }
    
    .detail-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .detail-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .detail-features {
        margin-bottom: 20px;
    }
    
    .detail-features li {
        font-size: 0.9rem;
    }
    
    .detail-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .nav-prev, .nav-next {
        width: 35px;
        height: 35px;
    }
    
    .progress-bar {
        width: 80px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
    
    .ydelse-image {
        height: 200px;
    }
}

/* Projekter Sektion Styles */
.projekter-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    background-image: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.floating-shape.shape-3 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 10%;
    animation: float 18s infinite ease-in-out 1s;
}

.section-intro {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.projekter-tabs {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 15px;
}

.tab-btn {
    background: none;
    border: 2px solid transparent;
    padding: 12px 25px;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(139, 90, 43, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.tab-btn:hover::before, .tab-btn.active::before {
    width: 100%;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-content {
    position: relative;
    min-height: auto; /* Ændret fra fixed height */
}

.tab-pane {
    position: relative; /* Ændret fra absolute */
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none; /* Tilføjet for at undgå scrollproblemer */
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block; /* Viser kun den aktive tab */
}

.projekt-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.projekt-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: auto; /* Sikrer fleksibel højde */
}

.projekt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(139, 90, 43, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.projekt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.projekt-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.projekt-card:hover .card-icon {
    background-color: var(--primary-color);
}

.projekt-card:hover .card-icon i {
    color: #fff;
}

.projekt-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.projekt-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.projekt-features {
    list-style: none;
    margin-bottom: 20px;
}

.projekt-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.projekt-features li:last-child {
    margin-bottom: 0;
}

.projekt-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.projekt-location {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

.projekt-location i {
    margin-right: 5px;
    color: var(--primary-color);
}

.projekter-cta {
    text-align: center;
    margin-top: 30px;
}

.primary-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.3);
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .projekter-section {
        padding: 100px 0;
    }
    
    .projekt-cards {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .projekter-section {
        padding: 80px 0;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .projekt-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .projekt-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .projekt-card h3 {
        font-size: 1.3rem;
    }
    
    /* Vis mobilknap og skjul desktopknap */
    .mobile-only {
        display: block;
        margin-bottom: 30px;
    }
    
    .desktop-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .projekter-section {
        padding: 60px 0;
    }
    
    .tab-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .projekt-cards {
        grid-template-columns: 1fr;
    }
    
    .projekt-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.4rem;
    }
    
    .projekt-card h3 {
        font-size: 1.2rem;
    }
    
    .projekt-card p {
        font-size: 0.95rem;
    }
    
    .projekt-features li {
        font-size: 0.9rem;
    }
}
/* Kundeudtalelser Sektion Styles */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 40px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    transform: rotate(45deg);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: #f0f0f0;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.author-info p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.nav-prev, .nav-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.nav-prev:hover, .nav-next:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(139, 90, 43, 0.05);
    border-radius: 10px;
}

.testimonials-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.secondary-button {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 90, 43, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonial-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonials-cta {
        padding: 30px 20px;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-cta p {
        font-size: 1rem;
    }
}
/* Kontakt Sektion Styles */
.kontakt-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    background-image: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.section-intro {
    max-width: 800px;
    margin: 20px auto 40px;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.kontakt-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.kontakt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 90, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.info-content p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.info-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-dark);
}

.info-address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
}

.social-media {
    margin-top: 10px;
}

.social-media h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 1.2rem;
}

.kontakt-form {
    flex: 1.5;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    width: calc(50% - 10px);
    display: inline-block;
    vertical-align: top;
}

.form-group:nth-child(odd) {
    margin-right: 20px;
}

.form-group.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238B5A2B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-dark);
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: 50px;
}

.submit-button:hover:before {
    width: 100%;
}

.submit-button:hover {
    box-shadow: 0 10px 20px rgba(139, 90, 43, 0.3);
    transform: translateY(-3px);
}

.button-text {
    margin-right: 10px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.form-success p {
    font-size: 1.1rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .kontakt-section {
        padding: 100px 0;
    }
    
    .kontakt-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .kontakt-info, .kontakt-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .kontakt-section {
        padding: 80px 0;
    }
    
    .form-group {
        width: 100%;
        margin-right: 0 !important;
    }
    
    .kontakt-form {
        padding: 30px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .kontakt-section {
        padding: 60px 0;
    }
    
    .kontakt-form {
        padding: 25px 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .submit-button {
        width: 100%;
        padding: 12px 20px;
    }
}
/* Footer Styles */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.company-info p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '\f105'; /* FontAwesome arrow icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover:before {
    left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.credit a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.credit a:hover {
    color: white;
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        order: 1;
    }
    
    .copyright {
        order: 2;
    }
    
    .credit {
        order: 3;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    #back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}
.scroll-indicator {display:none; }