/* Visuelt skjult, men læses af skærmlæsere og søgemaskiner (fikser heading-hierarki uden at ændre design) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --gold-primary: #D4AF37;
    --gold-light: #F7E98E;
    --gold-dark: #B8860B;
    --black-primary: #000000;
    --black-soft: #0a0a0a;
    --black-medium: #1a1a1a;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-primary: rgba(0, 0, 0, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.3);
}

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

/* Cross-browser compatibility fixes */
*, *::before, *::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: var(--white);
    background: var(--black-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px;
    transition: background 0.1s ease, border-color 0.1s ease, backdrop-filter 0.1s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    will-change: background, border-color, backdrop-filter;
}

.floating-nav.scrolled {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-color: rgba(212, 175, 55, 0.4);
}

.floating-nav.scrolled .nav-container {
    background: rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    transition: background 0.1s ease;
}

.nav-logo .logo {
    height: 130px;
    width: auto;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.floating-nav:hover .nav-logo .logo {
    transform: translateY(20px) scale(1.1);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease, background 0.15s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    will-change: color, background;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-gold);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    justify-content: space-between;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.mobile-logo {
    height: 160px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
}

.mobile-nav-links {
    list-style: none;
    flex-grow: 1;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold-primary);
    padding-left: 20px;
}

.mobile-cta-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

/* === CINEMATIC VIDEO / YOUTUBE EFFECTS === */

/* Shared wrapper for both uploaded video and YouTube */
.hero-video-wrapper,
.hero-youtube-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Warm cinematic color grade */
.hero-video-wrapper::before,
.hero-youtube-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 8, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(40, 20, 0, 0.25) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* YouTube iframe — covers the full hero som et tæppe */
.hero-youtube-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Dækker altid hele fladen uanset skærmformat */
    width: 100vw;
    height: 56.25vw;   /* 16:9 → height = width × 9/16 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 → width = height × 16/9 */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
    z-index: 0;
}

/* Ken Burns slow zoom — uploaded video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: videoKenBurns 22s ease-in-out infinite alternate;
    transform-origin: center center;
    transition: opacity 1.5s ease;
}

.hero-video-b { opacity: 0; }

@keyframes videoKenBurns {
    0%   { transform: scale(1.0)  translate(0%,    0%); }
    33%  { transform: scale(1.05) translate(-0.8%, 0.4%); }
    66%  { transform: scale(1.08) translate(0.5%,  -0.3%); }
    100% { transform: scale(1.1)  translate(0.3%,  0.5%); }
}

/* Animated film grain overlay */
.hero-video-grain {
    position: absolute;
    inset: -200px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="4" stitchTiles="stitch"/></filter><rect width="200" height="200" filter="url(%23grain)" opacity="0.5"/></svg>');
    opacity: 0.06;
    animation: grainShift 0.1s steps(1) infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes grainShift {
    0%   { transform: translate(0px,   0px); }
    11%  { transform: translate(-30px,-50px); }
    22%  { transform: translate(50px,  20px); }
    33%  { transform: translate(-20px, 40px); }
    44%  { transform: translate(40px, -30px); }
    55%  { transform: translate(-50px, 10px); }
    66%  { transform: translate(20px,  50px); }
    77%  { transform: translate(-40px,-20px); }
    88%  { transform: translate(30px, -40px); }
    100% { transform: translate(-10px, 30px); }
}

/* Vignette — gælder alle modi */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.72) 100%);
}


/* === END CINEMATIC VIDEO EFFECTS === */

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0;
    animation: backgroundSlideshow 14s infinite;
}

/* Hide text overlay on background images */
.bg-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.review-item:hover::before {
    transform: scaleX(1);
}

.review-content .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-content .stars i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    color: var(--text-light);
    font-weight: 600;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Facebook Reviews Integration */
.facebook-reviews-widget,
.facebook-reviews-embed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    z-index: 2;
}

/* Facebook Reviews Display (Custom Styled) */
.facebook-reviews-display {
    position: relative;
    z-index: 2;
}

.facebook-reviews-display .review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.facebook-logo {
    width: 40px;
    height: 40px;
    background: #1877f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.review-source span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.facebook-reviews-link {
    margin-top: 2rem;
    text-align: center;
}

.facebook-btn {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.facebook-btn:hover {
    background: #166fe5 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.facebook-review {
    border-color: rgba(24, 119, 242, 0.2);
}

.facebook-review:hover {
    border-color: rgba(24, 119, 242, 0.4);
}

.facebook-reviews-widget .fb-page,
.facebook-reviews-embed iframe {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Style Facebook content to match theme */
.facebook-reviews-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .facebook-reviews-widget,
    .facebook-reviews-embed {
        padding: 1rem;
    }
    
    .facebook-reviews-widget .fb-page {
        width: 100% !important;
    }
}

/* Hero buttons styling */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-buttons .facebook-btn {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: white !important;
    transition: all 0.3s ease;
}

.hero-buttons .facebook-btn:hover {
    background: #166fe5 !important;
    border-color: #166fe5 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

/* Responsive hero buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Baggrundsbilleder defineres nu dynamisk i hero-bg.php */

@keyframes backgroundSlideshow {
    0% { opacity: 0; }
    8% { opacity: 1; }
    18% { opacity: 1; }
    22% { opacity: 0.8; }
    26% { opacity: 0.4; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(212, 175, 55, 0.2) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 40px;
    animation: heroFadeIn 1s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero text content styling */
.hero-text-content {
    margin-bottom: 5rem;
}

.hero-main-heading {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero paragraph styling - Cross-browser compatible */
.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 16rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
    font-family: var(--font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    z-index: 5;
}

/* Responsive styling for hero text */
@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.1rem;
        margin-top: 8rem;
        margin-bottom: 3rem;
        max-width: 90%;
    }
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 60px 20px 40px;
    box-sizing: border-box;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 0 auto;
    background: url('logo_web.png'), linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.7));
    background-size: 400px auto;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: var(--black-primary);
    color: var(--white);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }
    
    .modal-header,
    .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    color: var(--gold-primary);
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.title-line-1 {
    display: block;
    color: var(--white);
    animation: titleSlideIn 1s ease 0.3s both;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease 0.6s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFadeIn 1s ease 0.9s both;
    outline: none !important;
    border: none !important;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 120px;
    flex-wrap: wrap;
    animation: buttonsFadeIn 1s ease 1.2s both;
    position: relative;
    z-index: 10;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@keyframes buttonsFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 10;
}

.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 ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: statsFadeIn 1s ease 1.5s both;
    margin-top: -2rem;
}

@keyframes statsFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.5; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-10px) translateX(-50%); }
}

/* General Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    background-size: 600px 600px, 400px 400px;
    animation: patternMove 20s linear infinite;
}

.bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.02) 49%, rgba(212, 175, 55, 0.02) 51%, transparent 52%);
    background-size: 30px 30px;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.section-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
}

/* About Section */
.about-section {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
}

.about-section .section-header {
    margin-top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.visual-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 160px 0;
    background: var(--black-primary);
}

.services-section .section-header {
    margin-top: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 350px;
}

.service-card.featured {
    grid-row: span 2;
    height: 730px;
}

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

.service-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-background img {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%
    );
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.service-card:hover .service-content {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 60%,
        rgba(212, 175, 55, 0.2) 100%
    );
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    transform: scale(1.1);
}

.service-title {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--gold-primary);
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card.featured .service-features {
    opacity: 1;
    transform: translateY(0);
}

.service-features ul {
    list-style: none;
    columns: 2;
}

.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.service-price {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    align-self: flex-start;
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    padding: 160px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.9));
}

.portfolio-section .section-header {
    margin-top: 40px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    border-color: var(--gold-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(212, 175, 55, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}
.portfolio-expand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}
.portfolio-expand i {
    font-size: 1rem;
}
.portfolio-item:hover .portfolio-expand {
    transform: translateX(5px);
}

.portfolio-category {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.portfolio-link {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-link {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 160px 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%),
        url('logo_web.png');
    background-size: auto, 90%;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

/* Make forms transparent to show logo through */
.contact-section .contact-form {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
}

.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.contact-section .contact-info {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
}

.contact-section .section-header {
    margin-top: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-primary);
    font-size: 22px;
    flex-shrink: 0;
}

.method-content h4 {
    color: var(--gold-primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.method-value {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.method-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* === Billedupload felt === */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 2px dashed rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(212, 175, 55, 0.04);
    user-select: none;
}

.file-upload-label:hover,
.file-upload-label.drag-over {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.file-upload-label i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.file-preview-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* === END Billedupload felt === */

.form-submit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.form-submit::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.5s ease;
}

.form-submit:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(10, 10, 10, 0.95));
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    height: 220px;
    width: auto;
    object-fit: contain;
    max-width: 350px;
    margin-top: -60px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h3 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a {
    color: var(--gold-primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.footer-column a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--black-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.scroll-to-top.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-nav {
        padding: 8px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .service-card.featured {
        grid-column: span 2;
        grid-row: span 1;
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .floating-nav .nav-links,
    .floating-nav .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .contact-form-container {
        position: static;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Nav logo on mobile (hamburger is visible) */
    .nav-logo .logo {
        height: 70px;
        transform: translateY(0);
    }
    .floating-nav:hover .nav-logo .logo {
        transform: translateY(0) scale(1.05);
    }

    /* Footer logo on mobile */
    .footer-logo {
        height: 130px;
        margin-top: -20px;
    }

    /* Footer grid stacks */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hero padding reduction */
    .om-hero-content {
        padding: 110px 20px 55px;
    }

    /* CTA strip */
    .cta-strip {
        padding: 50px 0 !important;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        top: 15px;
        padding: 6px 15px;
    }

    .nav-logo .logo {
        height: 55px;
        transform: translateY(0);
    }
    .floating-nav:hover .nav-logo .logo {
        transform: translateY(0) scale(1.05);
    }

    .mobile-logo {
        height: 100px;
    }

    .footer-logo {
        height: 100px;
        margin-top: 0;
    }

    .om-hero-content {
        padding: 90px 16px 45px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .method-icon {
        align-self: center;
    }

    .method-content {
        width: 100%;
        text-align: center;
    }

    .method-content h4,
    .method-value,
    .method-description {
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */

@media (max-width: 768px) {

    /* --- Navigation: samme stil som desktop men tilpasset mobil --- */

    /* Skjul hamburger - vi viser links direkte */
    .mobile-menu-toggle {
        display: none;
    }

    /* Logo - lille version i nav */
    .floating-nav .nav-logo {
        display: flex;
    }

    .nav-logo .logo {
        height: 55px;
        transform: translateY(0);
    }

    .floating-nav:hover .nav-logo .logo {
        transform: translateY(0) scale(1.05);
    }

    /* Skjul CTA knap i nav */
    .floating-nav .nav-cta {
        display: none;
    }

    /* Vis nav-links igen */
    .floating-nav .nav-links {
        display: flex;
        gap: 0;
    }

    /* Nav fylder næsten hele skærmbredden */
    .floating-nav {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        border-radius: 14px;
        padding: 5px;
    }

    .nav-container {
        padding: 6px 10px;
        border-radius: 10px;
        justify-content: space-between;
        width: 100%;
    }

    /* Kompakte links der passer på mobil */
    .nav-link {
        font-size: 12px;
        padding: 7px 9px;
        white-space: nowrap;
    }

    /* --- Hero: skub indhold ned under den faste nav --- */
    .hero-content {
        padding-top: 90px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Reducer tekststørrelse og margin */
    .hero-content p {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-text-content {
        margin-bottom: 1.5rem;
    }

    .hero-main-heading {
        font-size: clamp(1.8rem, 7vw, 3rem);
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    /* Hero-title */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        margin-bottom: 1rem;
    }

    /* Knapper: alle tre vandret på én linje */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 2rem;
    }

    .hero-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px 12px;
        font-size: 13px;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }

    .hero-buttons .facebook-btn {
        flex: 1 1 0;
    }

    /* Statistikker: vandret på én linje */
    .hero-stats {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        padding: 0 10px;
        margin-top: 0;
        align-items: stretch;
    }

    .stat-item {
        min-width: 0;
        flex: 1;
        padding: 12px 6px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 0;
    }

    /* --- Sektionspadding --- */
    .about-section,
    .services-section,
    .portfolio-section {
        padding: 80px 0;
    }

    /* --- Service kort --- */
    .service-card {
        height: auto;
        min-height: 260px;
    }

    .service-card.featured {
        height: auto;
        min-height: 280px;
    }

    /* --- Portfolio --- */
    .portfolio-item {
        height: 260px;
    }

    .portfolio-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* --- About-billede --- */
    .visual-card img {
        height: 280px;
    }

    /* --- Servicekorttekst --- */
    .service-content h3 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    /* --- Kontakt --- */
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {

    /* --- Sektionspadding --- */
    .about-section,
    .services-section,
    .portfolio-section,
    .contact-section {
        padding: 60px 0;
    }

    /* --- Service kort --- */
    .service-card,
    .service-card.featured {
        min-height: 220px;
    }

    /* --- Portfolio --- */
    .portfolio-item {
        height: 220px;
    }

    /* --- About-billede --- */
    .visual-card img {
        height: 220px;
    }

    /* --- Sektion header --- */
    .about-section .section-header,
    .services-section .section-header,
    .portfolio-section .section-header {
        margin-top: 0;
    }

    /* --- Container --- */
    .container {
        padding: 0 16px;
    }

    /* --- Filter knapper --- */
    .portfolio-filter {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* --- Footer --- */
    footer {
        padding-top: 60px;
    }

    /* --- Formularer: forhindrer iOS auto-zoom --- */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px;
    }

    /* --- Hero safe area på iOS --- */
    .hero-section {
        min-height: 100svh;
    }
}

/* ===== iOS / SAFARI FIXES ===== */

/* Hero fylder hele skærmen på iOS (100vh inkluderer browserkrom) */
.hero-section {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport - moderne iOS/Android */
    min-height: -webkit-fill-available;
}

/* Baggrundsbilleder: GPU-acceleration + webkit-animation til iOS */
.bg-image-1,
.bg-image-2,
.bg-image-3,
.bg-image-4 {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
    -webkit-animation: backgroundSlideshow 14s infinite;
    animation: backgroundSlideshow 14s infinite;
}

@-webkit-keyframes backgroundSlideshow {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    18%  { opacity: 1; }
    22%  { opacity: 0.8; }
    26%  { opacity: 0.4; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Parallax på mobil: slå transform fra så iOS ikke fryser animationen */
@media (max-width: 768px) {
    .bg-image-1,
    .bg-image-2,
    .bg-image-3,
    .bg-image-4 {
        transform: none !important;
        -webkit-transform: none !important;
    }
}

/* ===== SLUT PÅ MOBILE FIXES ===== */

/* Admin Mode Styles - Only show when explicitly in admin mode on content pages, not admin.html */
body:not([data-page="admin"]).admin-mode .editable {
    position: relative;
    outline: 2px dashed var(--gold-primary);
    min-height: 20px;
    transition: all 0.3s ease;
}

body:not([data-page="admin"]).admin-mode .editable:hover {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

body:not([data-page="admin"]).admin-mode .editable-image {
    border: 2px dashed var(--gold-primary);
    transition: all 0.3s ease;
}

body:not([data-page="admin"]).admin-mode .editable-image:hover {
    filter: brightness(1.1);
}