:root {
    --primary-color: #0f172a;
    /* Slate 900 */
    --secondary-color: #2563eb;
    /* Blue 600 */
    --secondary-hover: #1d4ed8;
    /* Blue 700 */
    --accent-color: #10b981;
    /* Emerald 500 */
    --text-color: #334155;
    /* Slate 700 */
    --text-light: #f8fafc;
    /* Slate 50 */
    --bg-light: #f1f5f9;
    /* Slate 100 */
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    margin: 15px 0 0 0;
}

.section-title.text-light {
    color: var(--text-light);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ========================================================================= */
/* Knapper */
/* ========================================================================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================================================= */
/* 1. Header */
/* ========================================================================= */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 80px;
    max-width: 100%;
    width: auto;
    display: block;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
}

.btn-support {
    padding: 10px 24px;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-support:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.phone-link {
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--secondary-hover);
}

/* ========================================================================= */
/* 2. Hero */
/* ========================================================================= */
.hero {
    background-color: var(--bg-light);
    padding: 100px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scaleX(-1) scale(1.05);
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scaleX(-1) scale(1);
}

/* ========================================================================= */
/* 3. Ydelser */
/* ========================================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* ========================================================================= */
/* 4. Specialer */
/* ========================================================================= */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.specialty-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--secondary-color);
}

.specialty-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.specialty-title::before {
    content: '→';
    margin-right: 10px;
    color: var(--secondary-color);
}

.specialty-list {
    list-style: none;
}

.specialty-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    font-weight: 500;
}

.specialty-list li:last-child {
    border-bottom: none;
}

/* ========================================================================= */
/* 5. Om Peter Junker */
/* ========================================================================= */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 2;
}

.about-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 5px solid var(--secondary-color);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 10px;
    display: block;
}

/* ========================================================================= */
/* 6. Referencer */
/* ========================================================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 800;
    color: var(--accent-color);
}

/* ========================================================================= */
/* 7. Kontakt */
/* ========================================================================= */
.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    background-color: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-method h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-hover);
}

.contact-form {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* ========================================================================= */
/* 8. Footer */
/* ========================================================================= */
.footer {
    background-color: var(--primary-color);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-link:hover {
    color: var(--bg-white);
}

/* ========================================================================= */
/* Media Queries (Responsivt Design) */
/* ========================================================================= */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .about-container {
        flex-direction: column;
    }

    .section-title.text-left {
        text-align: center;
    }

    .section-title.text-left::after {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}