/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --accent-color: #00a3e0;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.nav-logo {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.language-switcher {
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 5px;
    font-weight: 600 !important;
}

.language-switcher:hover {
    background-color: var(--secondary-color);
    color: white !important;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    background-color: #f0f0f0;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e5a8e 0%, #0a3d5c 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero .btn {
    margin-bottom: 2rem;
}

.vakttelefon-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.vakttelefon-icon {
    font-size: 2rem;
}

.vakttelefon-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.vakttelefon-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.vakttelefon-number:hover {
    opacity: 0.8;
}

.vakttelefon-description {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
    flex-basis: 100%;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background-color: var(--background-light);
}

.services-image-container {
    width: 100%;
    margin: 2rem 0 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.services-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: linear-gradient(to bottom, var(--background-white) 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid rgba(30, 90, 142, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(30, 90, 142, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    min-height: 3.4rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-list li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
}

.service-list li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.service-price-large {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 2px solid rgba(30, 90, 142, 0.1);
}

/* Small Service Cards */
.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card-small {
    background: linear-gradient(135deg, var(--background-white) 0%, #f8f9fa 100%);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 1px solid rgba(30, 90, 142, 0.08);
}

.service-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(30, 90, 142, 0.12);
    border-color: rgba(30, 90, 142, 0.3);
}

.service-icon-small {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.service-card-small h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-price-small {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.benefits-list strong {
    color: var(--primary-color);
}

/* About Section Image */
.about-image-container {
    width: 100%;
    margin: 2rem 0 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* Location Map */
.location-map {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.location-map iframe {
    box-shadow: var(--shadow);
}

.location-link {
    text-align: center;
    margin-top: 1rem;
}

.location-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.location-link a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact Persons Section */
.contact-persons {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-persons h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.person-card {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.person-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.person-image {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.person-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    border: 3px solid var(--primary-color);
    filter: brightness(1.05) contrast(1.1);
}

.person-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: white;
}

.person-info {
    text-align: center;
}

.person-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.person-title {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.person-contact {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.person-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.person-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
}

/* Contact Section */
.contact {
    background-color: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}
.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}
/* Contact Form */
.contact-form-container {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
}

.contact-form .btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Service Helper Text */
.service-helper {
    margin: 1rem 0;
    padding: 1rem 1.2rem;
    background-color: #e8f4f8;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-helper p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-helper p:first-child {
    margin-top: 0;
}

.service-helper p:last-child {
    margin-bottom: 0;
}

.service-helper a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.service-helper a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
    color: #999999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        display: none;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* Service Detail Pages */
.service-detail {
    padding: 60px 0;
    min-height: 70vh;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.book-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: var(--secondary-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    color: white;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.service-detail-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.service-detail-content a:hover {
    text-decoration: underline;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-dark);
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
}

.detail-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.authority-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.authority-link {
    display: block;
    padding: 1.2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.authority-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.authority-link strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}
/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(30, 90, 142, 0.05);
    font-weight: 700;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(30, 90, 142, 0.15);
    border-left-width: 8px;
}

.faq-question {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .faq-question {
        font-size: 1.15rem;
    }
}
