/* Garbæk IT – shared landing/topic page styles
   Extracted from the city landing-page template so location pages and
   topic ("emneside") pages share one look. */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #1a3a52 0%, #2a5a7a 100%);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
}

.logo a { color: inherit; text-decoration: none; }

.cta-button {
    background: #2a88cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1a6fa3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 136, 204, 0.3);
}

.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2a5a7a 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .subheading {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero .cta-primary {
    background: #2a88cc;
    padding: 14px 28px;
    font-size: 16px;
    margin: 15px 8px;
}

.price-highlight {
    background: rgba(42, 136, 204, 0.15);
    border: 2px solid #2a88cc;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
    font-size: 15px;
}

.price-highlight strong {
    color: #2a88cc;
}

section {
    padding: 50px 20px;
}

section.light {
    background: white;
}

section.dark {
    background: #f5f5f5;
}

.intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 760px;
    margin: 0 auto 30px;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 25px;
    text-align: center;
    color: #1a3a52;
}

h3 {
    font-size: 20px;
    color: #1a3a52;
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2a88cc;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 18px;
}

.service-card .price {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: bold;
    color: #1a3a52;
    font-size: 16px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
}

.service-card .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 14px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 35px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.feature-item::before {
    content: "✓";
    color: #2a88cc;
    font-weight: bold;
    font-size: 22px;
    flex-shrink: 0;
}

.why-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #2a88cc;
}

.why-box h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #555;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1a3a52;
    font-size: 15px;
}

.faq-question:hover {
    background: #f0f5fa;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    color: #2a88cc;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.cta-section {
    background: linear-gradient(135deg, #1a3a52 0%, #2a5a7a 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    margin: 15px 0;
}

.cta-section .cta-button {
    background: white;
    color: #1a3a52;
    font-size: 16px;
    padding: 13px 30px;
}

.cta-section .cta-button:hover {
    background: #f5f5f5;
    color: #0d1f2d;
}

.contact-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
}

.contact-item {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.contact-item strong {
    color: #2a88cc;
    min-width: 90px;
}

footer {
    background: #1a3a52;
    color: white;
    padding: 25px 20px;
    text-align: center;
    font-size: 13px;
}

footer p {
    margin-bottom: 8px;
}

footer a { color: #8ecbf0; }

.breadcrumb {
    background: white;
    padding: 15px 20px;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #2a88cc;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Internal-link grids (topic <-> location cross-linking) */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.link-card {
    display: block;
    background: white;
    border: 1px solid #e3e9ef;
    border-left: 4px solid #2a88cc;
    border-radius: 8px;
    padding: 16px 18px;
    text-decoration: none;
    color: #1a3a52;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.link-card span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-left-color: #1a6fa3;
}

.tag-row {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}

.tag-row a {
    display: inline-block;
    margin: 4px 6px;
    color: #2a88cc;
    text-decoration: none;
}

.tag-row a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 12px;
    }

    .hero {
        padding: 40px 20px;
    }

    section {
        padding: 35px 20px;
    }

    h2 {
        font-size: 22px;
    }

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

    .cta-button {
        display: block;
        width: 100%;
    }
}
