/* Reset og base styles - Copyright panthure.dk */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #3c2415;
    scroll-behavior: smooth;
}

/* Header - Copyright panthure.dk */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled .main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(60, 36, 21, 0.08);
    border-bottom: 1px solid rgba(230, 213, 195, 0.3);
}

/* Hovedheader */
.main-header {
    background: white;
    border-bottom: 1px solid #e6d5c3;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Mobil menu knap */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-btn:hover {
    background: rgba(60, 36, 21, 0.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #3c2415;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 45px;
    width: auto;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-link:hover .logo-image {
    opacity: 0.8;
}

/* Desktop navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #3c2415;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.nav-link:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA knap styling */
.nav-item-cta .nav-link {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.nav-item-cta .nav-link::after {
    display: none;
}

.nav-item-cta .nav-link:hover {
    background: linear-gradient(135deg, #b8956a 0%, #a08458 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    color: white !important;
}

.nav-item-cta .nav-link:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

/* Sociale medier ikoner */
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #3c2415;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px) scale(1.05);
}

.social-link svg {
    position: relative;
    z-index: 1;
}

/* Mobil drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-drawer.active {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 36, 21, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 85vw;
    height: 100%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(60, 36, 21, 0.2);
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e6d5c3;
    background: linear-gradient(135deg, #faf7f4 0%, #f7f3f0 100%);
}

.drawer-logo-image {
    height: 35px;
    width: auto;
}

.drawer-close {
    background: none;
    border: none;
    color: #8b6f47;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drawer-close:hover {
    background: rgba(212, 165, 116, 0.1);
    color: #d4a574;
    transform: scale(1.1);
}

.drawer-nav {
    flex: 1;
    padding: 24px 0;
}

.drawer-nav-list {
    list-style: none;
}

.drawer-nav-item {
    border-bottom: 1px solid rgba(230, 213, 195, 0.3);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInStagger 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.drawer-nav-item:nth-child(1) { animation-delay: 0.1s; }
.drawer-nav-item:nth-child(2) { animation-delay: 0.2s; }
.drawer-nav-item:nth-child(3) { animation-delay: 0.3s; }
.drawer-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInStagger {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    color: #3c2415;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    position: relative;
}

.drawer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 149, 106, 0.1) 100%);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drawer-nav-link:hover::before {
    width: 100%;
}

.drawer-nav-link:hover {
    color: #d4a574;
    padding-left: 32px;
}

/* CTA knap i mobil drawer */
.drawer-nav-item-cta .drawer-nav-link {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white !important;
    margin: 16px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.drawer-nav-item-cta .drawer-nav-link::before {
    display: none;
}

.drawer-nav-item-cta .drawer-nav-link:hover {
    background: linear-gradient(135deg, #b8956a 0%, #a08458 100%);
    padding-left: 24px;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid #e6d5c3;
    background: linear-gradient(135deg, #faf7f4 0%, #f7f3f0 100%);
}

.drawer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
}

.drawer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #3c2415;
    text-decoration: none;
    border-radius: 50%;
    border: 2px solid #e6d5c3;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.drawer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
}

.drawer-social-link:hover::before {
    opacity: 1;
}

.drawer-social-link:hover {
    color: white;
    border-color: #d4a574;
    transform: scale(1.1);
}

.drawer-social-link svg {
    position: relative;
    z-index: 1;
}

.drawer-contact {
    font-size: 14px;
    color: #8b6f47;
    line-height: 1.6;
    text-align: center;
}

.drawer-contact p {
    margin-bottom: 8px;
}

/* Hero sektion - Copyright panthure.dk */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fefcfb 0%, #faf7f4 100%);
    padding: 140px 0 80px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.hero-text {
    max-width: 520px;
}

.hero-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: #3c2415;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 18px;
    line-height: 1.6;
    color: #8b6f47;
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 40px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 15px;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: white;
    color: #6b4423;
    border-color: #e6d5c3;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.1);
}

.btn-outline:hover {
    background: #faf7f4;
    border-color: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(107, 68, 35, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c19660 0%, #a6845c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

/* Enhanced Image Carousel */
.hero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(60, 36, 21, 0.15);
    background: white;
    border: 1px solid #e6d5c3;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) saturate(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4a574;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Enhanced Features Section */
.features-section {
    border-top: 1px solid #e6d5c3;
    padding-top: 60px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e6d5c3;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(60, 36, 21, 0.1);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #3c2415;
    line-height: 1.3;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: #8b6f47;
    font-weight: 400;
}

/* Warm Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Galleri sektion - Copyright panthure.dk */
.gallery-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #3c2415;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.gallery-description {
    font-size: 18px;
    line-height: 1.6;
    color: #8b6f47;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    background: #faf7f4;
    box-shadow: 0 12px 40px rgba(60, 36, 21, 0.12);
    border: 1px solid #e6d5c3;
    aspect-ratio: 3/4;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.item-content {
    padding: 24px 0 0;
    text-align: left;
}

.item-title {
    font-size: 20px;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 12px;
    line-height: 1.3;
}

.item-description {
    font-size: 15px;
    line-height: 1.5;
    color: #8b6f47;
    margin-bottom: 16px;
}

.item-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.price-label {
    color: #8b6f47;
    font-weight: 500;
}

.price-value {
    color: #d4a574;
    font-weight: 700;
}

.gallery-footer {
    text-align: center;
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid #e6d5c3;
    background: white;
    color: #6b4423;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(107, 68, 35, 0.12);
}

.btn-outline-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-outline-large:hover::before {
    left: 100%;
}

.btn-outline-large:hover {
    background: #faf7f4;
    border-color: #d4a574;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(107, 68, 35, 0.2);
}

/* Baggrundselementer */
.gallery-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(184, 149, 106, 0.04) 100%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.06) 0%, rgba(107, 68, 35, 0.03) 100%);
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

@keyframes blob-float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-40px) scale(1.1); }
}

/* Testimonials sektion - Copyright panthure.dk */
.testimonials-section {
    padding: 100px 0 100px 0;
    background: linear-gradient(135deg, #f7f3f0 0%, #ede4d8 100%);
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #3c2415;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.testimonials-description {
    font-size: 18px;
    line-height: 1.6;
    color: #8b6f47;
    font-weight: 400;
}

/* Testimonials karrusel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 24px;
}

.testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e6d5c3;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(60, 36, 21, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(60, 36, 21, 0.15);
    border-color: #d4a574;
}

.quote-mark {
    color: #d4a574;
    opacity: 0.8;
    margin-bottom: 16px;
}

.testimonial-quote {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-text {
    font-style: italic;
    color: #3c2415;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e6d5c3;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.customer-details {
    flex: 1;
    min-width: 0;
}

.customer-name {
    font-size: 15px;
    font-weight: 600;
    color: #3c2415;
    line-height: 1.3;
    margin: 0 0 4px 0;
}

.customer-title {
    font-size: 13px;
    color: #8b6f47;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.rating-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star.filled {
    color: #d4a574;
}

.star.empty {
    color: #e6d5c3;
}

/* Karrusel navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e6d5c3;
    background: white;
    color: #8b6f47;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.1);
}

.carousel-arrow:hover {
    background: #faf7f4;
    border-color: #d4a574;
    color: #6b4423;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: -60px;
}

.carousel-arrow.next {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e6d5c3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #d4a574;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.testimonial-dot:hover {
    background: #d4a574;
}

/* Tillids indikatorer */
.trust-indicators {
    border-top: 1px solid #e6d5c3;
    padding-top: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e6d5c3;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 10px 25px rgba(60, 36, 21, 0.1);
}

.trust-number {
    font-size: 28px;
    font-weight: 700;
    color: #3c2415;
    line-height: 1.1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 14px;
    color: #8b6f47;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* Baggrundselementer */
.testimonials-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.testimonials-bg-elements .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 12s ease-in-out infinite;
}

.testimonials-bg-elements .blob-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(184, 149, 106, 0.06) 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.testimonials-bg-elements .blob-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(107, 68, 35, 0.05) 100%);
    bottom: 30%;
    right: 15%;
    animation-delay: 4s;
}

.testimonials-bg-elements .blob-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(230, 213, 195, 0.15) 0%, rgba(212, 165, 116, 0.08) 100%);
    top: 60%;
    left: 70%;
    animation-delay: 8s;
}

/* Mobil optimering */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-description {
        font-size: 16px;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 24px;
    }

    .customer-info {
        gap: 12px;
    }

    .carousel-arrow {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-item {
        padding: 20px;
    }

    .trust-number {
        font-size: 24px;
    }

    .trust-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-description {
        font-size: 15px;
    }

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

    .customer-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .rating-stars {
        justify-content: center;
    }
}

/* Om Os sektion - Copyright panthure.dk */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf7f4 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    max-width: 100%;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #3c2415;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #8b6f47;
    font-weight: 400;
    margin-bottom: 40px;
}

.about-description p {
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e6d5c3;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #d4a574;
    box-shadow: 0 10px 30px rgba(60, 36, 21, 0.1);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    color: #3c2415;
    line-height: 1.3;
    margin-bottom: 8px;
}

.value-text {
    font-size: 14px;
    line-height: 1.5;
    color: #8b6f47;
    font-weight: 400;
}

.about-button {
    margin-top: 32px;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(60, 36, 21, 0.15);
    border: 1px solid #e6d5c3;
    width: 100%;
    max-width: 400px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: contrast(1.05) saturate(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1), rgba(184, 149, 106, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Baggrundselementer */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-bg-elements .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 12s ease-in-out infinite;
}

.about-bg-elements .blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(184, 149, 106, 0.04) 100%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.about-bg-elements .blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.06) 0%, rgba(107, 68, 35, 0.03) 100%);
    bottom: 10%;
    right: -5%;
    animation-delay: 6s;
}

/* Mobil optimering */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .values-grid {
        gap: 20px;
        margin-bottom: 32px;
    }

    .value-item {
        gap: 12px;
        padding: 20px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-title {
        font-size: 16px;
    }

    .value-text {
        font-size: 13px;
    }

    .image-container {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
    }

    .image-container {
        max-width: 280px;
    }
}

/* Process sektion - Copyright panthure.dk */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f3f0 0%, #ede4d8 100%);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #3c2415;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.process-description {
    font-size: 18px;
    line-height: 1.6;
    color: #8b6f47;
    font-weight: 400;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
    margin-bottom: 60px;
}

.process-step {
    position: relative;
    text-align: center;
    background: white;
    border-radius: 20px;
    border: 1px solid #e6d5c3;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: #d4a574;
    box-shadow: 0 15px 40px rgba(60, 36, 21, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.step-content {
    padding: 20px;
}

.step-icon {
    width: 28px;
    height: 28px;
    color: #d4a574;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7f3f0 0%, #ede4d8 100%);
    border-radius: 12px;
    padding: 12px;
    width: fit-content;
    margin: 0 auto 12px auto;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #3c2415;
    line-height: 1.3;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 1.5;
    color: #8b6f47;
    font-weight: 400;
    margin-bottom: 16px;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b8956a;
    font-weight: 500;
    font-size: 12px;
    justify-content: center;
    background: #faf7f4;
    padding: 8px 12px;
    border-radius: 20px;
    width: fit-content;
    margin: 0 auto;
}

.step-connector {
    position: absolute;
    top: 24px;
    left: calc(100% - 15px);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574, #e6d5c3);
    z-index: 1;
    border-radius: 2px;
}

.process-step:last-child .step-connector {
    display: none;
}

.process-footer {
    text-align: center;
}

/* Baggrundselementer */
.process-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.process-bg-elements .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: blob-float 10s ease-in-out infinite;
}

.process-bg-elements .blob-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(184, 149, 106, 0.08) 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.process-bg-elements .blob-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.12) 0%, rgba(107, 68, 35, 0.06) 100%);
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

.process-bg-elements .blob-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(230, 213, 195, 0.2) 0%, rgba(212, 165, 116, 0.1) 100%);
    top: 60%;
    left: 70%;
    animation-delay: 6s;
}

/* Mobil optimering */
@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-container {
        padding: 0 20px;
    }

    .process-header {
        margin-bottom: 40px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-description {
        font-size: 16px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .step-connector {
        display: none;
    }

    .process-step {
        text-align: left;
        padding: 24px;
    }

    .step-number {
        margin-left: 0;
        margin-right: auto;
    }

    .step-icon,
    .step-duration {
        justify-content: flex-start;
        margin: 0 0 12px 0;
    }
}

@media (max-width: 480px) {
    .process-title {
        font-size: 28px;
    }

    .process-description {
        font-size: 15px;
    }
}

/* Kontakt sektion - Copyright panthure.dk */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf7f4 100%);
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #3c2415;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #3c2415 0%, #6b4423 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.contact-description {
  font-size: 16px;
  line-height: 1.6;
  color: #8b6f47;
  font-weight: 400;
  margin-bottom: 40px;
}

.contact-description p {
  margin-bottom: 20px;
}

.contact-description p:last-child {
  margin-bottom: 0;
}

/* Kontakt information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e6d5c3;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(60, 36, 21, 0.05);
}

.contact-item:hover {
  background: #faf7f4;
  border-color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(60, 36, 21, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
  border-radius: 12px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: #d4a574;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 16px;
  font-weight: 400;
  color: #3c2415;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.contact-value:hover {
  color: #d4a574;
}

/* CTA knapper */
.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Kontakt formular */
.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e6d5c3;
  box-shadow: 0 8px 30px rgba(60, 36, 21, 0.08);
}

.form-header {
  margin-bottom: 28px;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: #3c2415;
  line-height: 1.3;
  margin-bottom: 12px;
}

.form-description {
  color: #8b6f47;
  line-height: 1.5;
  font-size: 14px;
}

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

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #d4a574;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 16px;
  background: #faf7f4;
  border: 1px solid #e6d5c3;
  border-radius: 8px;
  color: #3c2415;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #b8956a;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d4a574;
  background: white;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4a574' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
}

.form-select option {
  background: white;
  color: #3c2415;
  padding: 8px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox styling */
.form-checkbox {
  margin-bottom: 28px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e6d5c3;
  border-radius: 4px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
  border-color: #d4a574;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: #8b6f47;
  flex: 1;
}

/* Send knap */
.btn-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, #c19660 0%, #a6845c 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.btn-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Baggrundselementer */
.contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.contact-bg-elements .gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: blob-float 15s ease-in-out infinite;
}

.contact-bg-elements .blob-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(184, 149, 106, 0.04) 100%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.contact-bg-elements .blob-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.06) 0%, rgba(107, 68, 35, 0.03) 100%);
  bottom: 20%;
  right: -5%;
  animation-delay: 5s;
}

.contact-bg-elements .blob-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(230, 213, 195, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

/* Mobil optimering */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-container {
    padding: 0 20px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    order: -1;
  }

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

  .contact-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .contact-item {
    padding: 16px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 24px;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .contact-title {
    font-size: 28px;
  }
}

/* Scroll animationer */
[data-scroll-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-scroll-animation="fade-left"] {
    transform: translateX(30px);
}

[data-scroll-animation="fade-right"] {
    transform: translateX(-30px);
}

[data-scroll-animation].animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Om Os Page Styles */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #3c2415 0%, #2a1a0f 50%, #1a0f08 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #f7f3f0;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #f7f3f0 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    margin-bottom: 24px;
    font-weight: 400;
    font-style: italic;
}

.about-hero-description {
    font-size: 1.125rem;
    color: #c4a882;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-story {
    padding: 100px 0;
    background: #f7f3f0;
}

.about-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-content {
    padding-right: 40px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #3c2415;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.story-text {
    font-size: 1.125rem;
    color: #6b4423;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(60, 36, 21, 0.1);
    border: 1px solid #e6d5c3;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(60, 36, 21, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #d4a574;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.875rem;
    color: #8b6f47;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-image-section {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

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

.story-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px;
    color: white;
}

.overlay-text {
    font-size: 1.25rem;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.about-values {
    padding: 100px 0;
    background: white;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #3c2415;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.values-description {
    font-size: 1.125rem;
    color: #8b6f47;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: #f7f3f0;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e6d5c3;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(60, 36, 21, 0.1);
    background: white;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 16px;
}

.value-description {
    font-size: 1rem;
    color: #6b4423;
    line-height: 1.6;
}

.about-team {
    padding: 100px 0;
    background: #f7f3f0;
}

.about-team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.team-header {
    text-align: center;
    margin-bottom: 80px;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #3c2415;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.team-description {
    font-size: 1.125rem;
    color: #8b6f47;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: flex;
    justify-content: center;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(60, 36, 21, 0.1);
    border: 1px solid #e6d5c3;
    transition: all 0.3s ease;
    max-width: 400px;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(60, 36, 21, 0.15);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: 32px;
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3c2415;
    margin-bottom: 8px;
}

.member-role {
    font-size: 1rem;
    color: #d4a574;
    font-weight: 500;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-description {
    font-size: 0.95rem;
    color: #6b4423;
    line-height: 1.6;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #3c2415 0%, #2a1a0f 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #f7f3f0;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.125rem;
    color: #c4a882;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Testimonials Styles - Copyright panthure.dk */
.testimonials {
}

/* Footer sektion - Copyright panthure.dk */
.designkokken-footer {
    background: linear-gradient(135deg, #3c2415 0%, #2a1a0f 100%);
    color: #f7f3f0;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.footer-main {
    margin-bottom: 40px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Company Section */
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 300;
    color: #f7f3f0;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f7f3f0 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-description {
    color: #c4a882;
    line-height: 1.6;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 32px;
}

/* Social Media */
.social-media {
    margin-bottom: 32px;
}

.social-title {
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    color: #d4a574;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #d4a574;
    color: #3c2415;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Newsletter */
.newsletter-title {
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    margin-bottom: 12px;
}

.newsletter-description {
    color: #c4a882;
    line-height: 1.5;
    font-size: 13px;
    margin-bottom: 16px;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: #f7f3f0;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #c4a882;
}

.newsletter-submit {
    padding: 14px;
    background: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 48px;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #c19660 0%, #a6845c 100%);
    transform: scale(1.05);
}

/* Column Titles */
.footer-column-title {
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Navigation Lists */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: #c4a882;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    padding-left: 0;
    font-size: 14px;
}

.footer-nav-link:hover {
    color: #d4a574;
    padding-left: 8px;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #d4a574;
    transition: width 0.3s ease;
}

.footer-nav-link:hover::before {
    width: 4px;
}

/* Contact Info */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a574;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-link,
.footer-contact-text {
    color: #c4a882;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    font-size: 14px;
}

.footer-contact-link:hover {
    color: #d4a574;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copyright p {
    color: #c4a882;
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}

.footer-bottom-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.footer-bottom-link {
    color: #c4a882;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 13px;
}

.footer-bottom-link:hover {
    color: #d4a574;
}

/* Payment Icons */
.payment-icons-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-elements .gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: blob-float 20s ease-in-out infinite;
}

.footer-bg-elements .blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 149, 106, 0.05) 100%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.footer-bg-elements .blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(107, 68, 35, 0.04) 100%);
    bottom: -15%;
    right: -5%;
    animation-delay: 7s;
}

.footer-bg-elements .blob-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(230, 213, 195, 0.06) 0%, rgba(212, 165, 116, 0.03) 100%);
    top: 40%;
    right: 20%;
    animation-delay: 14s;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .designkokken-footer {
        padding: 60px 0 30px 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-nav-link:hover {
        padding-left: 0;
    }

    .footer-nav-link::before {
        display: none;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-bottom-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .payment-icons-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom-list {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .newsletter-input {
        border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    }

    .newsletter-submit {
        border-radius: 0 0 12px 12px;
        min-width: auto;
        padding: 12px;
    }
}

/* Mobil optimering */
@media (max-width: 768px) {
    .main-header {
        padding: 16px 0;
    }

    .hero-section {
        padding: 120px 0 60px 0;
        min-height: 90vh;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-image-container {
        height: 300px;
        order: -1;
    }

    .image-carousel {
        height: 280px;
        border-radius: 16px;
    }

    .hero-heading {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-subheading {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        gap: 12px;
        justify-content: center;
    }

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

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

    .feature-item {
        gap: 12px;
        padding: 20px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-description {
        font-size: 13px;
    }

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-container {
        padding: 0 20px;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 32px;
    }

    .gallery-description {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .item-content {
        padding: 20px 0 0;
    }

    .item-title {
        font-size: 18px;
    }

    .item-description {
        font-size: 14px;
    }

    .btn-outline-large {
        padding: 16px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-image-container {
        height: 250px;
    }

    .image-carousel {
        height: 230px;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-description {
        font-size: 15px;
    }

    .hero-heading {
        font-size: 32px;
    }
}

/* Responsiv */
@media (max-width: 768px) {
    .header-container {
        padding: 0 24px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .header-social {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .logo-image {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .logo-image {
        height: 50px;
    }

    .drawer-content {
        width: 100%;
        max-width: 100vw;
    }

    .header-content {
        gap: 16px;
    }

    .header-social {
        display: none;
    }
}

/* Smooth scrolling forbedringer */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles til tilgængelighed */
.nav-link:focus,
.social-link:focus,
.drawer-nav-link:focus,
.mobile-menu-btn:focus,
.drawer-close:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link::after {
        background: currentColor;
    }
    
    .announcement-link::after {
        background: currentColor;
    }
}

/* Scroll animationer til hero sektion */
/* Language Toggle Styles */
.language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4px;
    margin-right: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-option {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    border-radius: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.language-option.active {
    background: rgba(255, 255, 255, 0.2);
    color: rgb(0, 0, 0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-option:hover:not(.active) {
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Language Toggle */
.mobile-language-section {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.mobile-language-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.mobile-language-toggle .language-option {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    flex: 1;
    text-align: center;
}

.mobile-language-toggle .language-option.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-language-toggle .language-option:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-toggle {
        display: flex; /* Keep visible on mobile */
    }
}

@media (min-width: 769px) {
    .mobile-language-section {
        display: none;
    }
}
.mobile-language-section {display:none;}

    
.drawer-language-selector {display:none;}