/**
 * @author mickMind.com - Professional Web Development
 * @website https://mickmind.com
 * @copyright 2025 mickMind.com - All Rights Reserved
 * @description MVLA.dk - Michael Valbjørn Liberal Alliance Campaign Website
 */

/* ================================================
   KAMPAGNESIDE - MICHAEL VALBJØRN
   Liberal Alliance - Modernized Responsive Design
   ================================================ */
/* ================================================
   CSS RESET & BASE STYLES
   ================================================ */
:root {
    /* Color Palette - Liberal Alliance Official Branding */
    --primary-blue: #004B87;
    --dark-blue: #003558;
    --la-blue: #0066CC; /* Liberal Alliance Official Blue */
    --la-yellow: #FFD100; /* Liberal Alliance Official Yellow */
    --primary-white: #FFFFFF;
    --accent-orange: #FFA500;
    --accent-gold: #FFB800;
    --dark-gray: #2C2C2C;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --border-gray: #e0e0e0;
    /* Modern Glassmorphism */
    --glass-background: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    /* Shadows */
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Typography */
    --base-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px; /* More precise baseline */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100%;
}
body {
    font-family: var(--base-font);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--primary-white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 80px; /* Prevent sticky CTA bar overlap */
}
/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
}
h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.4px;
}
h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.3px;
}
h4 {
    font-size: 1.25rem;
    letter-spacing: -0.2px;
}
h5 {
    font-size: 1.1rem;
    letter-spacing: -0.1px;
}
h6 {
    font-size: 1rem;
    letter-spacing: 0;
}
/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%), url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 1080" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="heroBg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23004B87;stop-opacity:1" /><stop offset="100%" style="stop-color:%23003558;stop-opacity:1" /></linearGradient></defs></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: gradientShift 15s ease infinite;
    color: var(--primary-white);
    padding: 6rem 20px;
    position: relative;
    overflow: hidden;
}
/* ================================================
   HERO IMAGE SECTION (Campaign Images)
   ================================================ */
.hero-image-section {
    padding: 2rem 20px;
    background-color: var(--primary-white);
    overflow: hidden;
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .hero-image-section {
        min-height: 300px;
        background-attachment: scroll;
        padding: 1.5rem 20px;
    }
}
@media (max-width: 480px) {
    .hero-image-section {
        min-height: 250px;
        padding: 1.5rem 15px;
    }
}
.hero-image {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 75, 135, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Default: No animation (will be applied via modifier classes) */
    opacity: 0;
}
/* Modifier class: Wide hero image (for pages like Mærkesager) */
.hero-image-wide {
    max-width: 900px;
}
/* Modifier class: Slide from left */
.hero-image-left {
    animation: slideInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Modifier class: Slide from right */
.hero-image-right {
    animation: slideInFromRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Modifier class: Fade and scale */
.hero-image-fade {
    animation: fadeInScale 1s ease-out forwards;
}
/* Slide-in from left animation */
/* Slide-in from right animation */
/* Hover effect for hero images */
.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 75, 135, 0.25);
}
/* Optional: Add decorative border accent */
.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--accent-gold));
    opacity: 0.6;
}
/* Responsive adjustments for hero images */
@media (max-width: 992px) {
    .hero-image {
        max-width: 450px;
    }
    .hero-image-section {
        padding: 2.5rem 20px;
    }
}
@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        border-radius: 10px;
    .hero-image-section {
        padding: 2rem 20px;
    }
    /* Adjust animations for mobile - shorter distances */
    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes fadeInScale {
        0% {
            opacity: 0;
            transform: scale(0.95);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }
}
@media (max-width: 480px) {
    .hero-image {
        max-width: 100%;
        border-radius: 8px;
    }
    .hero-image-section {
        padding: 1.5rem 15px;
    }
}
/* ================================================
   MICHAEL'S PERSONAL SECTION (Contact Page)
   ================================================ */
.michael-personal-section {
    padding: 2.5rem 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.michael-personal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    opacity: 0.4;
}
.michael-personal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}
.michael-photo-wrapper {
    position: relative;
    animation: fadeInSlideRight 1s ease-out forwards;
    opacity: 0;
}
.michael-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 47, 93, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid var(--primary-white);
}
.michael-photo:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: none; /* Ingen skygge ved hover */
}
.michael-personal-text {
    animation: fadeInSlideLeft 1s ease-out 0.3s forwards;
    opacity: 0;
}
.michael-greeting {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.michael-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.michael-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.michael-quick-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 47, 93, 0.2);
}
.quick-contact-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 47, 93, 0.3);
}
.quick-contact-btn .contact-icon {
    font-size: 1.2rem;
}
/* Animations for Michael's section */
@keyframes fadeInSlideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeInSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Responsive adjustments for Michael's section */
@media (max-width: 992px) {
    .michael-personal-grid {
        gap: 2.5rem;
    }
    .michael-greeting {
        font-size: 2rem;
    }
    .michael-intro,
    .michael-cta-text {
        font-size: 1.05rem;
    }
}
@media (max-width: 768px) {
    .michael-personal-section {
        padding: 2rem 20px;
    }
    .michael-personal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .michael-photo-wrapper {
        display: flex;
        justify-content: center;
    }
    .michael-photo {
        max-width: 350px;
    }
    .michael-greeting {
        font-size: 1.8rem;
    }
    .michael-quick-contact {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .michael-personal-section {
        padding: 2.5rem 15px;
    }
    .michael-photo {
        max-width: 100%;
        border-radius: 10px;
    }
    .michael-greeting {
        font-size: 1.6rem;
    }
    .michael-intro,
    .michael-cta-text {
        font-size: 1rem;
    }
    .quick-contact-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 184, 0, 0.15),
        transparent 50%
    );
    opacity: 0.5;
    pointer-events: none;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--la-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(0, 0, 0, 0.5),
        1px 1px 2px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.7));
    animation: fadeInDown 0.8s ease-out;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--primary-white);
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 0.3s both;
}
.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 0.6s both;
    flex-wrap: wrap;
    justify-content: center;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Pulse animation for Svalen logo */
@keyframes pulse {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Pulse animation for Svalen logo */
@keyframes pulse {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}
}
.hero-campaign-img:hover {
    transform: scale(1.02);
}
.hero-campaign-img.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    min-height: 400px;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* More modern button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--dark-gray);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtlePulse 3s ease-in-out infinite;
}
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 184, 0, 0);
    }
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.5s ease;
}
.btn-primary::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.btn-primary:hover::after {
    transform: translateX(4px);
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.5);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    animation: none;
}
/* ================================================
   SECTION DIVIDERS
   ================================================ */
.divider-diagonal {
    height: 80px;
    background-image: url('assets/img/divider-diagonal.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 2rem 0;
}
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}
.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}
.intro-highlight {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-top: 2rem;
    font-style: italic;
}
/* ================================================
   CAMPAIGN BANNER
   ================================================ */


/* ================================================
   SPEECH SECTION
   ================================================ */
.speech-section {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}
.speech-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-blue);
    border-radius: 5px;
}
.speech-title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.speech-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-gray);
}
.speech-quote p {
    margin-bottom: 1.5rem;
}
.speech-highlight {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-blue);
    text-align: center;
    font-style: normal;
}
/* ================================================
   QUICK LINKS
   ================================================ */
.quick-links {
    padding: 2.5rem 20px;
    background-color: var(--light-gray);
}
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.quick-link-card {
    background-color: var(--primary-white);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}
.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-link-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}
.quick-link-card p {
    color: var(--medium-gray);
    margin: 0;
}
/* ================================================
   MÆRKESAGER SECTION
   ================================================ */
.maerkesager-section {
    padding: 1.5rem 20px;
    background-color: var(--primary-white);
}
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-top-color: var(--accent-orange);
}
.maerkesag-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
/* SVG icon styles for mærkesager */
.maerkesag-card:nth-child(1) .maerkesag-icon {
    background-image: url('../img/icons/icon-tax.svg');
}
.maerkesag-card:nth-child(2) .maerkesag-icon {
    background-image: url('../img/icons/icon-infrastructure.svg');
}
.maerkesag-card:nth-child(3) .maerkesag-icon {
    background-image: url('../img/icons/icon-business.svg');
}
.maerkesag-card:nth-child(4) .maerkesag-icon {
    background-image: url('../img/icons/icon-pension.svg');
}
.maerkesag-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}
.maerkesag-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.maerkesag-list {
    list-style-position: outside;
    list-style-type: '▸ ';
    padding-left: 2rem;
    margin: 1.5rem 0;
}
.maerkesag-list li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    padding-left: 0.5rem;
}
.maerkesag-list li::marker {
    color: var(--accent-orange);
    font-weight: bold;
}
.maerkesag-cta {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 1.5rem;
    font-style: italic;
    text-align: center;
    font-size: 1.05rem;
}
/* ================================================
   HVERDAG SECTION
   ================================================ */
.hverdag-section {
    padding: 1.5rem 20px;
    background-color: var(--light-gray);
}
.hverdag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.hverdag-card {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.hverdag-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.hverdag-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}
.hverdag-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hverdag-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}
.hverdag-description {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}
/* ================================================
   SPONSOR SECTION
   ================================================ */
.sponsor-section {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}
.sponsor-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}
.sponsor-hero-content {
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-gray), var(--primary-white));
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
}
.sponsor-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.sponsor-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin: 0;
}
/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.benefit-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}
/* Sponsor Form */
.sponsor-form-section {
    max-width: 900px;
    margin: 0 auto;
}
.sponsor-form-wrapper {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    margin-top: 2rem;
}
.sponsor-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
/* Fun Section */
.fun-section {
    padding: 2.5rem 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}
.fun-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.fun-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.fun-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-white);
    margin: 0;
}
.fun-text + .fun-text {
    margin-top: 1rem;
}
/* Press Section */
.press-section {
    padding: 2.5rem 20px;
    background-color: var(--light-gray);
}
.press-content {
    max-width: 1000px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.press-info h3,
.press-media h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.press-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}
.press-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--soft-shadow);
}
.press-contact-item {
    font-size: 1rem;
    color: var(--dark-gray);
}
.press-contact-item strong {
    color: var(--primary-blue);
    font-family: var(--heading-font);
}
.press-contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.press-contact-item a:hover {
    color: var(--accent-orange);
}
.press-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.press-list li {
    padding: 1rem;
    background-color: var(--primary-white);
    border-left: 4px solid var(--primary-blue);
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}
.press-list strong {
    color: var(--primary-blue);
    font-family: var(--heading-font);
}
.press-kit {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--primary-white);
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
}
.press-kit h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.press-kit p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}
/* ================================================
   INFO BOX
   ================================================ */
.info-box-section {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}
.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    border-radius: 10px;
    text-align: center;
}
.info-box h3 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}
.info-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.info-box p:last-child {
    margin-bottom: 0;
}
/* ================================================
   CONTAINER & LAYOUT
   ================================================ */
.container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 20px;
    width: 100%;
}
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--primary-white);
    padding: 2.5rem 20px;
    text-align: center;
}
.page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-white);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-weight: 700;
}
.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--accent-gold);
    font-weight: 400;
    margin: 0;
}
/* ================================================
   NAVIGATION
   ================================================ */
/* ================================================
   MODERN FULL-WIDTH CLEAN HEADER (Stripe/Vercel Style)
   ================================================ */
/* Main Header Container */
.header {
    width: 100%;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
    height: 55px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* iOS Safari Fix: Prevent header height jump on mobile */
@media (max-width: 768px) {
    .header {
        transition: box-shadow 0.3s ease !important;
    }
    .header.scrolled {
        height: 60px !important; /* Same as mobile header height */
    }
}

/* Keep "Michael Valbjørn" text visible when scrolled */
.header.scrolled .logo-name {
    font-size: 1.2rem;
    transition: font-size 0.3s ease;
}

.header.scrolled .logo-icon {
    height: 28px;
    transition: height 0.3s ease;
}
/* Navigation Container - Centered Max-Width */
.nav-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* ================================================
   COMPACT HORIZONTAL LOGO
   ================================================ */
.logo-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo-compact:hover {
    transform: scale(1.02);
}
.logo-icon {
    height: 35px;
    width: auto;
    transition: filter 0.3s ease;
}
.logo-icon:hover {
    filter: brightness(1.1);
}
.logo-name {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-white);
    letter-spacing: 0.5px;
    white-space: nowrap;
}
/* ================================================
   NAVIGATION MENU
   ================================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
    margin: 0;
    padding: 0;
}
/* ================================================
   GHOST BUTTON NAVIGATION LINKS (Slack Style)
   ================================================ */
.nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    /* Ghost Button Styling */
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: transparent;
    /* Layout */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* Transitions */
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.nav-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.25s ease;
}
/* Ghost Button Hover State */
.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--la-yellow);
    color: var(--primary-white);
    transform: translateY(-1px);
}
.nav-link:hover svg {
    transform: scale(1.1);
}
/* Active State */
.nav-link.active {
    background: rgba(255, 209, 0, 0.15);
    border-color: var(--la-yellow);
    color: var(--la-yellow);
    font-weight: 600;
}
/* ================================================
   DROPDOWN MENU
   ================================================ */
.nav-dropdown {
    position: relative;
}
.dropdown-toggle::after {
    content: '▼';
    font-size: 0.65rem;
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}
.nav-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 200px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #001933 100%);
    border: 1px solid rgba(255, 209, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}
.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu li {
    list-style: none;
    margin: 0;
}
.dropdown-menu .nav-link {
    display: flex;
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 6px;
    text-align: left;
    font-size: 0.875rem;
}
.dropdown-menu .nav-link:hover {
    background: rgba(255, 209, 0, 0.15);
    transform: translateX(4px);
}
/* ================================================
   MOBILE HAMBURGER MENU
   ================================================ */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.visible {
    opacity: 1;
}
/* ================================================
   MOBILE RESPONSIVE (<768px)
   ================================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-backdrop {
        display: block;
    }
    .header {
        height: 60px;
    }
    .nav-container {
        padding: 0 1.5rem;
    }
    /* Compact Logo Mobile */
    .logo-icon {
        height: 30px;
    }
    .logo-name {
        font-size: 1.1rem;
    }
    /* Mobile Slide-in Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100dvh; /* iOS Safari safe */ height: -webkit-fill-available; height: 100vh;
        background: linear-gradient(180deg, var(--dark-blue) 0%, #001933 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 4rem 1.5rem 2rem;
        gap: 0.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.mobile-open {
        right: 0;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        border: 1px solid rgba(255, 209, 0, 0.2);
    }
}
/* Very Small Screens (<375px) */
@media (max-width: 375px) {
    .nav-container {
        padding: 0 1rem;
    }
    .logo-name {
        font-size: 1rem;
    }
    .nav-menu {
        width: 90%;
    }
}


/* Fixed Background Parallax */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: 400px;
}
/* Disable fixed backgrounds on mobile for performance */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}
/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}
/* Dropdown Toggle with Icon */
.dropdown-toggle::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.4rem;
    display: inline-block;
    transition: transform 0.3s ease;
}
.nav-dropdown.active .dropdown-toggle::before,
.nav-dropdown:hover .dropdown-toggle::before {
    transform: rotate(180deg);
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #001933 100%);
    border: 2px solid var(--la-yellow);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    border: none;
    text-align: left;
    width: 100%;
}
.dropdown-menu .nav-link:hover {
    background-color: rgba(255, 209, 0, 0.15);
    transform: translateX(5px);
    box-shadow: none;
}
.dropdown-menu .nav-link.active {
    background-color: rgba(255, 209, 0, 0.2);
    transform: scale(1);
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    margin: 3px 0;
    transition: all 0.3s ease;
}
/* Mobile menu toggle active state (X animation) */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Header scrolled state - shrink effect */
.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.header.scrolled .logo-img {
    height: 35px;
}
.header.scrolled .logo-la-icon {
    height: 30px;
}
/* Modern pill buttons don't need underline - using border and background instead */
}
@keyframes slideInMenuItem {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-secondary {
    background-color: var(--primary-white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 75, 135, 0.1), transparent);
    transition: all 0.5s ease;
}
.btn-secondary:hover::before {
    left: 100%;
}
.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 75, 135, 0.3);
}
/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 2.5rem 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--primary-white);
    text-align: center;
}
.cta-title {
    color: var(--accent-gold);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 2.5rem 20px;
    background-color: var(--primary-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
/* Contact Grid with Image (3-column layout) */
.contact-grid-with-image {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}
/* Contact Image Wrapper */
.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none; /* Ingen skygge ved hover */
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(255, 209, 0, 0.05));
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
}
.contact-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
/* Contact Content Area */
.contact-content-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.contact-info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--soft-shadow);
}
.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-item h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-family: var(--heading-font);
}
.contact-detail-item p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 1rem;
}
.contact-detail-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.contact-detail-item a:hover {
    color: var(--accent-orange);
}
/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
}
.social-media-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--primary-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-link-large:hover {
    transform: translateX(5px);
    box-shadow: var(--hover-shadow);
}
.social-link-large .social-icon {
    font-size: 1.5rem;
}
.social-icon-svg {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: currentColor;
}
/* Trust Signals */
.trust-signals {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 75, 135, 0.05);
    background-image: url('../img/trust-badge-bg.svg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 75, 135, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}
.trust-badge:hover {
    background-color: rgba(0, 75, 135, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 75, 135, 0.15);
}
.trust-icon {
    font-size: 1.1rem;
    color: var(--accent-orange);
}
.trust-text {
    font-family: var(--base-font);
    white-space: nowrap;
}
/* Contact Info Bottom - under grid */
.contact-info-bottom {
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 47, 93, 0.08);
}
.contact-info-bottom .contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.contact-info-bottom .social-media-section {
    text-align: center;
}
.contact-info-bottom .social-links-large {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
/* Contact Form */
.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
}
.contact-form-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
    font-family: var(--heading-font);
}
.form-group input,
.form-group textarea {
    padding: 1.125rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: var(--base-font);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease;
    background-color: var(--primary-white);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(0, 75, 135, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
    opacity: 0.7;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.btn-full {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}
.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
    line-height: 1.5;
}
/* Info Box Section */
.info-box-section {
    padding: 2rem 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}
.info-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem;
    color: var(--primary-white);
}
.info-box h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}
.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-white);
    margin: 0;
}
/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: var(--dark-gray);
    color: var(--primary-white);
    padding: 2rem 20px 1rem;
    position: relative;
    z-index: 200; /* Over sticky bar */
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-image: url('../img/footer-accent.svg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
}
.footer-info h4,
.footer-social h4 {
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.footer-info p {
    margin-bottom: 0.75rem;
    color: var(--primary-white);
    font-size: 1rem;
}
.footer-info a {
    color: var(--primary-white);
    transition: color 0.3s ease;
}
.footer-info a:hover {
    color: var(--accent-orange);
}
.footer-contact-details {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
}
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-link {
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: var(--accent-orange);
    color: var(--primary-white);
}
/* Footer Legal Section */
.footer-legal {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-legal-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}
.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}
.footer-legal-links a:hover {
    color: var(--accent-orange);
}
.footer-legal-links a:hover::after {
    width: 100%;
}
.footer-publisher {
    color: rgba(255, 255, 255, 0.8);
}
.footer-publisher p {
    margin: 0;
    font-size: 0.9rem;
}
.footer-publisher strong {
    color: var(--primary-white);
    font-family: var(--heading-font);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}
/* ================================================
   STICKY CTA BAR
   ================================================ */
.sticky-cta-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 20px;
    z-index: 100; /* Lavere z-index */
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta-bar.show {
    bottom: 0;
}
.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.sticky-cta-text {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--la-yellow);
    letter-spacing: 0.3px;
}
.sticky-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* ================================================
   COOKIE CONSENT BANNER (GDPR COMPLIANT)
   ================================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: -500px; /* Hidden by default */
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.4);
    padding: 1.5rem 20px;
    z-index: 10000; /* Above everything */
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--la-yellow);
}

.cookie-consent-banner.cookie-consent-visible {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.cookie-consent-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-link {
    color: var(--la-yellow);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cookie-consent-link:hover {
    opacity: 0.8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-primary {
    background: var(--la-yellow);
    color: var(--dark-blue);
}

.cookie-btn-primary:hover {
    background: #FFC400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 209, 0, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--la-yellow);
    color: var(--la-yellow);
}

.cookie-btn-link {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    text-decoration: underline;
}

.cookie-btn-link:hover {
    color: var(--la-yellow);
}

/* Mobile responsive cookie banner */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.25rem 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .cookie-consent-title {
        font-size: 1.1rem;
    }

    .cookie-consent-description {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .cookie-btn-link {
        width: auto;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-title {
        font-size: 1rem;
    }

    .cookie-consent-description {
        font-size: 0.85rem;
    }

    .cookie-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* ================================================
   DUAL PARALLAX SECTION (MICHAEL + VALGBJØRNEN)
   ================================================ */
.dual-parallax-section {
    transition: all 0.3s ease;
}

.dual-parallax-left,
.dual-parallax-right {
    transition: all 0.3s ease;
}

/* Fade in animation for text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive dual parallax - Stack vertically */
@media (max-width: 768px) {
    .dual-parallax-section {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .dual-parallax-left,
    .dual-parallax-right {
        min-height: 350px !important;
        background-attachment: scroll !important; /* Fixed parallax doesn't work well on mobile */
        padding: 2.5rem 1.5rem !important;
    }

    .dual-parallax-left h2,
    .dual-parallax-right h2 {
        font-size: 2rem !important;
    }

    .dual-parallax-left p {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .dual-parallax-left,
    .dual-parallax-right {
        min-height: 300px !important;
        padding: 2rem 1rem !important;
    }

    .dual-parallax-left h2,
    .dual-parallax-right h2 {
        font-size: 1.5rem !important;
    }

    .dual-parallax-left p {
        font-size: 0.9rem !important;
    }
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 992px) {
    .hero-content {
        padding: 0 20px;
    }

    /* Svalen logo mobile responsive */
    .hero-svalen-logo {
        width: 80px !important;
        top: 1rem !important;
        right: 1rem !important;
    }


    /* Svalen logo mobile responsive */
    .hero-svalen-logo {
        width: 80px !important;
        top: 1rem !important;
        right: 1rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .maerkesager-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .hverdag-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (max-width: 768px) {
    /* Responsive Dual Logo */
    .logo-dual-identity {
        gap: 12px;
    }
    .logo-img {
        height: 40px;
    }
    .logo-text {
        font-size: 1.4rem /* Ultra Modern mobile */;
    }
    .logo-divider {
        height: 35px;
    }
    .logo-la-icon {
        height: 32px;
    }
    .logo-party-text {
        font-size: 0.95rem;
    }
    .nav-menu {
        position: fixed;
    .maerkesager-grid {
        grid-template-columns: 1fr;
    }
    .hverdag-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 2rem 20px;
        }

        /* Force mærkesager cards to 1 per row on mobile */
        .maerkesager-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 1.5rem !important;
        }
    }
    .cta-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-grid-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-image-wrapper {
        padding: 1.5rem;
    }
    .contact-content-area {
        gap: 2rem;
    }
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .page-header {
        padding: 2rem 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .sponsor-hero-content {
        padding: 2rem 1.5rem;
    }
    .sponsor-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .fun-card {
        padding: 2rem 1.5rem;
    }
    .press-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .press-kit {
        padding: 2rem 1.5rem;
    }
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .sticky-cta-text {
        font-size: 1rem;
    }
    .sticky-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    .btn-small {
        width: 100%;
    }

    /* Compact sticky CTA bar on mobile - mini design with icon + button */
    .sticky-cta-bar {
        padding: 0.5rem 1rem;
        height: auto;
        min-height: 45px;
    }

    .sticky-cta-content {
        gap: 0.75rem;
        max-width: 100%;
    }

    /* Mobile: Replace long text with icon + short text */
    .sticky-cta-text {
        font-size: 0; /* Hide original text "Sammen har vi en chance" */
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .sticky-cta-text::before {
        content: "👋 Kontakt";
        font-size: 0.9rem; /* Normal size for new text */
        font-weight: 600;
        color: var(--la-yellow);
    }

    /* Mobile: Stack buttons vertically if both shown, or just one */
    .sticky-cta-buttons {
        gap: 0.5rem;
        flex-direction: row;
    }

    /* Hide secondary button on mobile to save space */
    .sticky-cta-buttons .btn-secondary {
        display: none;
    }

    /* Smaller button on mobile */
    .sticky-cta-buttons .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    /* Keep body padding for sticky bar space */
    body {
        padding-bottom: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-info,
    .footer-social {
        text-align: center;
    }
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    .footer-legal {
        flex-direction: column;
        align-items: center;
    }
}
/* ================================================
   GDPR CONSENT CHECKBOX STYLING
   ================================================ */
.form-group-consent {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(0, 75, 135, 0.03);
    border: 1px solid rgba(0, 75, 135, 0.15);
    border-radius: 8px;
}
.consent-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.consent-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}
.consent-label {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    cursor: pointer;
    user-select: none;
}
.consent-label a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.consent-label a:hover {
    color: var(--accent-orange);
}
.consent-note {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.5;
    font-style: italic;
}
/* Checkbox validation state */
.consent-checkbox:invalid {
    outline: 2px solid rgba(255, 0, 0, 0.3);
}
.consent-checkbox:valid {
    outline: 2px solid rgba(0, 128, 0, 0.3);
}
.consent-checkbox:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
/* ================================================
   POLICY PAGES STYLING
   ================================================ */
.policy-section {
    padding: 2rem 20px;
    background-color: var(--primary-white);
}
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}
.policy-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
}
.policy-date {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}
.policy-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
}
.policy-block {
    margin-bottom: 3rem;
}
.policy-block h2 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-orange);
    font-family: var(--heading-font);
}
.policy-block h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.policy-block h4 {
    font-size: 1.15rem;
    color: var(--dark-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--heading-font);
}
.policy-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}
.policy-list {
    list-style-position: outside;
    padding-left: 2rem;
    margin: 1.5rem 0;
}
.policy-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--dark-gray);
}
.policy-list li::marker {
    color: var(--primary-blue);
    font-weight: bold;
}
.policy-block .info-box {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    margin: 1.5rem 0;
}
.policy-block .info-box h4 {
    color: var(--primary-blue);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.policy-block .info-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.policy-block .info-box p:last-child {
    margin-bottom: 0;
}
.policy-block .info-box ul {
    margin: 1rem 0;
    padding-left: 2rem;
}
.policy-block .info-box a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
}
.policy-block .info-box a:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}
.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--primary-white);
    border-radius: 10px;
    text-align: center;
}
.policy-footer p {
    color: var(--primary-white);
    font-size: 1rem;
    line-height: 1.8;
}
.policy-signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--accent-gold);
}
.policy-signature strong {
    font-weight: 700;
    font-style: normal;
}
.policy-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}
/* Cookie Table Styling */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}
.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cookie-table thead {
    background-color: var(--primary-blue);
    color: var(--primary-white);
}
.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 0.95rem;
}
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray);
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.cookie-table tbody tr:last-child td {
    border-bottom: none;
}
.cookie-table tbody tr:hover {
    background-color: var(--light-gray);
}
/* Responsive Policy Pages */
} /* Close @media (max-width: 768px) from line 2112 */
@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 20px;
    }
    .policy-intro {
        padding: 1.5rem;
    }
    .policy-block h2 {
        font-size: 1.5rem;
    }
    .policy-block h3 {
        font-size: 1.2rem;
    }
    .policy-nav {
        flex-direction: column;
    }
    .policy-nav .btn {
        width: 100%;
    }
    .cookie-table {
        font-size: 0.85rem;
    }
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
    .consent-wrapper {
        gap: 0.75rem;
    }
    .form-group-consent {
        padding: 1rem;
    }
}
/* ================================================
   LA LOGO & BRANDING STYLES
   ================================================ */
/* Footer LA Logo */
.footer-la-branding {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-la-logo {
    max-width: 180px !important;
    width: 100%;
    max-height: 100px !important;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}
.footer-la-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}
.footer-la-text {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}
/* Trust Badge with LA Icon */
.trust-badge-with-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.trust-badge-la-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/* Hero Section Accent - Svalen */
.hero-accent-svalen {
    position: absolute;
    bottom: -50px;
    right: 5%;
    width: 120px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
/* Sponsor Showcase Grid */
.sponsor-showcase-section {
    padding: 2.5rem 20px;
    background-color: var(--light-gray);
}
.sponsor-showcase-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}
.sponsor-showcase-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.sponsor-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}
.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--accent-orange);
}
.sponsor-card.primary-sponsor {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.03), rgba(255, 165, 0, 0.03));
}
.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}
.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0%);
}
.sponsor-placeholder {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
}
.sponsor-placeholder-title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}
.sponsor-placeholder-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
}
/* Mobile Responsive for LA Branding */
@media (max-width: 768px) {
    .hero-accent-svalen {
        width: 80px;
        bottom: -30px;
        right: 10px;
    }
    .footer-la-logo {
        max-width: 140px;
    }
    .sponsor-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .sponsor-card {
        padding: 1.5rem;
        min-height: 120px;
    }
}
/* ================================================
   OPTION 2 LAYOUT - VALBJØRN TIL VENSTRE



/* ============================================
   RESPONSIVE HERO SECTIONS (Inline Style Overrides)
   ============================================ */
/* Override large inline font sizes on tablets */
@media (max-width: 992px) {
    section h1[style*="3.5rem"],
    section h2[style*="2.8rem"] {
        font-size: 2.5rem !important;
    }
}
/* Override large inline font sizes on mobile */
@media (max-width: 768px) {
    section h1[style*="3.5rem"] {
        font-size: 2rem !important;
    }
    
    section h2[style*="2.8rem"],
    section h2[style*="2.5rem"] {
        font-size: 1.8rem !important;
    }
    
    section p[style*="1.3rem"] {
        font-size: 1.1rem !important;
    }
    
    section p[style*="1.2rem"] {
        font-size: 1.05rem !important;
    }
    
    /* Make gradient sections more compact on mobile */
    section[style*="padding: 5rem"] {
        padding: 3rem 0 !important;
    }
    
    section[style*="padding: 4rem"] {
        padding: 2.5rem 0 !important;
    }
}
@media (max-width: 480px) {
    section h1[style*="3.5rem"] {
        font-size: 1.75rem !important;
    }
    
    section h2[style*="2.8rem"],
    section h2[style*="2.5rem"] {
        font-size: 1.5rem !important;
    }
    
    section p[style*="1.3rem"],
    section p[style*="1.2rem"] {
        font-size: 1rem !important;
    }
    
    /* Extra compact padding on small mobile */
    section[style*="padding: 5rem"],
    section[style*="padding: 4rem"] {
        padding: 2rem 0 !important;
    }
    
    /* Make buttons stack vertically on very small screens */
    div[style*="display: flex"][style*="gap: 1.5rem"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Footer reduced padding for very small screens */
    .footer {
        padding: 1.5rem 15px 0.75rem;
    }
    
    /* Sticky CTA Bar optimized padding */
    .sticky-cta-bar {
        padding: 0.75rem 15px;
    }
    
    .sticky-cta-content {
        gap: 0.75rem;
    }
}
/* ============================================
   MOBILE TOUCH TARGETS (Minimum 44x44px)
   ============================================ */
@media (max-width: 768px) {
    /* Ensure all buttons meet minimum touch target size */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-small,
    button,
    a.btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Checkboxes and radio buttons */
    input[type="checkbox"],
    input[type="radio"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Social links and icon buttons */
    .social-link,
    .social-link-large,
    .quick-contact-btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Nav links */
    .nav-link,
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}
/* ============================================
   FOLKETINGS-INSPIRERET STYLING
   ============================================ */
/* Candidate Badge */
.candidate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    font-family: var(--heading-font);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.candidate-badge-icon {
    font-size: 1rem;
}
/* Folketings Background Pattern */
.folketings-bg {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0, 47, 93, 0.03) 0%, rgba(139, 0, 0, 0.03) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 47, 93, 0.02) 50px,
            rgba(0, 47, 93, 0.02) 51px
        );
}
/* Lovforslag-Styled Cards (Bill/Proposal Cards) */
.lovforslag-card {
    background: white;
    border-left: 6px solid #8B0000;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.lovforslag-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="60" opacity="0.05" fill="%23002F5D">§</text></svg>') no-repeat;
    background-size: contain;
}
.lovforslag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 0, 0, 0.2);
    border-left-width: 8px;
}
.lovforslag-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}
.lovforslag-number {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lovforslag-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--la-yellow);
    color: var(--dark-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
}
.lovforslag-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.lovforslag-description {
    font-family: var(--base-font);
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.lovforslag-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #777;
}
.lovforslag-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lovforslag-meta-label {
    font-weight: 600;
    color: #555;
}
/* Folketings Colors Accent */
.ft-border-blue {
    border-left-color: #002F5D;
}
.ft-border-red {
    border-left-color: #8B0000;
}
.ft-border-yellow {
    border-left-color: var(--la-yellow);
}
/* Official Seal Style */
.official-seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002F5D 0%, #8B0000 100%);
    border: 4px solid var(--la-yellow);
    box-shadow: 0 4px 16px rgba(0, 47, 93, 0.3);
    position: relative;
}
.official-seal::before {
    content: '⚖';
    font-size: 2.5rem;
    color: white;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .lovforslag-card {
        padding: 1.5rem;
    }
    
    .lovforslag-title {
        font-size: 1.25rem;
    }
    
    .lovforslag-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ================================================
   MÆRKESAGER MED MICHAEL PORTRÆT LAYOUT
   ================================================ */
/* 3-Column Wrapper: Cards (65%) | Michael (35%) */
   MOBILE HAMBURGER MENU
   ================================================ */
/* Hamburger Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 48px;  /* Increased for better touch target (min 48x48px) */
    height: 48px; /* Increased for better touch target */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px; /* Padding for visual spacing */
    z-index: 1001;
    position: relative;
}
.mobile-menu-toggle span {
    width: 28px; /* Actual bar width */
    height: 3px;
    background: #FFD100; /* LA Yellow for better visibility */
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    margin: 0 auto; /* Center the bars */
}
/* Hamburger Animation to X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.visible {
    opacity: 1;
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-backdrop {
        display: block;
    }
    /* Header Adjustments - Fixed for proper sticky behavior */
    .header {
        margin: 0;
        top: 0;
        transform: translateY(0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Auto-hide header on scroll down (mobile UX enhancement) */
    .header.header-hidden {
        transform: translateY(-100%);
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }
    /* Hide desktop menu by default */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100dvh; /* iOS Safari safe */ height: -webkit-fill-available; height: 100vh;
        background: linear-gradient(180deg, var(--dark-blue) 0%, #001933 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.mobile-open {
        right: 0;
    }
    /* Mobile Menu Items */
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    /* Dropdown in Mobile */
    .dropdown-menu {
        position: static;
        width: 100%;
        background: rgba(0, 25, 51, 0.6);
        border: 1px solid rgba(255, 209, 0, 0.3);
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    .dropdown-menu .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    /* Logo Adjustments */
    .logo-text {
        font-size: 1.5rem;
    }
    .logo-la-icon {
        height: 32px;
    }
    .logo-img {
        height: 40px;
    }
    .logo-tagline {
        font-size: 0.65rem;
    }
    /* Michael Portrait Mobile */
    .maerkesager-content-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    .maerkesager-grid {
        flex: 1;
        grid-template-columns: 1fr;
    }
    .maerkesager-image-column {
        flex: 1;
        max-width: 100%;
    }
    .michael-portrait {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
/* Very Small Phones */
@media (max-width: 375px) {
    .nav-menu {
        width: 90%;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .michael-portrait {
        max-height: 500px;
        min-height: 250px;
    }
}

/* ================================================
   TAX CALCULATOR MODAL STYLES
   ================================================ */

.tax-calculator-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.tax-calculator-modal.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tax-calculator-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInScale 0.3s ease-out;
}

@keyframes slideInScale {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.tax-calculator-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--dark-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.tax-calculator-close:hover {
    background: var(--la-yellow);
    color: var(--dark-blue);
    transform: rotate(90deg);
}

.tax-calculator-body {
    padding: 3rem 2.5rem;
}

/* Calculator Header */
.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--la-yellow);
}

.calculator-title {
    font-size: 2.2rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Form Groups */
.calculator-form-group {
    margin-bottom: 1.5rem;
}

.calculator-label {
    display: block;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.calculator-input,
.calculator-select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--la-yellow);
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.calculator-input:focus,
.calculator-select:focus {
    outline: none;
    border-color: var(--la-yellow);
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.1);
}

/* Remove number input spinners for cleaner look */
.calculator-input[type="number"]::-webkit-outer-spin-button,
.calculator-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calculator-input[type="number"] {
    -moz-appearance: textfield;
}

/* Input with Suffix Layout (e.g. "100 kr" or "15 %") */
.input-with-suffix {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.input-with-suffix .calculator-input {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.input-suffix {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 700;
    white-space: nowrap;
    min-width: 35px;
    text-align: left;
}

/* Form Help Text */
.form-help {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.4;
}

/* Category System (for comprehensive calculator) */
.category-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.category-checkbox:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: var(--la-yellow);
    box-shadow: 0 4px 12px rgba(255, 209, 0, 0.2);
}

.category-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--la-yellow);
}

.category-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    flex: 1;
}

.category-inputs {
    display: none;
    margin-top: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--la-yellow);
    animation: slideDown 0.3s ease-out;
}

.category-inputs.visible {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Input Grid */
.category-inputs .calculator-form-group {
    margin-bottom: 1rem;
}

.category-inputs .calculator-form-group:last-child {
    margin-bottom: 0;
}

/* Result Container */
.calculator-result {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid var(--la-yellow);
}

/* Result Rows */
.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    color: #333;
    font-size: 1.2rem;
}

.result-value {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
}

.result-value-small {
    color: #666;
    font-size: 0.9rem;
}

.result-negative {
    color: #dc3545;
}

.result-positive {
    color: #28a745;
}

.result-current {
    background: #fff3cd;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.result-proposed {
    background: #d4edda;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.result-total {
    background: linear-gradient(135deg, var(--la-yellow) 0%, #FFA500 100%);
    padding: 1.2rem;
    margin: 0.5rem 0;
    border-radius: 10px;
}

.result-total .result-label,
.result-total .result-value {
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.result-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--la-yellow), transparent);
    margin: 1.5rem 0;
}

/* Savings Badge */
.result-savings {
    margin-top: 2rem;
    text-align: center;
}

.savings-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.savings-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.savings-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.savings-percent {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.savings-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Result Impact */
.result-impact {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid #2196f3;
}

.result-impact h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-impact li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.result-impact li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

/* Result Breakdown */
.result-breakdown {
    margin: 1.5rem 0;
}

.result-breakdown-item {
    background: white;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--la-yellow);
}

.result-breakdown-label {
    display: block;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-breakdown-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-savings-small {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.result-title {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .tax-calculator-modal {
        padding: 1rem;
    }

    .tax-calculator-body {
        padding: 2rem 1.5rem;
    }

    .calculator-title {
        font-size: 1.8rem;
    }

    .calculator-subtitle {
        font-size: 1rem;
    }

    .calculator-input,
    .calculator-select {
        font-size: 16px !important; /* Prevents iOS auto-zoom */
        min-height: 44px; /* Touch-friendly target */
    }

    .input-suffix {
        font-size: 1.1rem;
    }

    .savings-amount {
        font-size: 2rem;
    }

    .result-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .result-breakdown-values {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}


/* ================================================
   VALGQUIZ STYLING
   ================================================ */

.valgbjornen-quiz-section {
    position: relative;
    overflow: hidden;
}

#valgquiz-container {
    min-height: 400px;
    transition: all 0.3s ease;
}

/* Quiz Header */
.quiz-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--la-yellow);
}

.quiz-title {
    font-size: 2rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.quiz-progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--la-yellow), #FFA500);
    transition: width 0.4s ease;
    border-radius: 10px;
}

.quiz-progress-text {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Quiz Question */
.quiz-question-container {
    margin: 2rem 0;
}

.quiz-question {
    font-size: 1.5rem;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    font-size: 1.1rem;
}

.quiz-option:hover {
    border-color: var(--la-yellow);
    background: linear-gradient(135deg, #fff9e6, #ffffff);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255, 209, 0, 0.3);
}

.quiz-option:active {
    transform: translateX(10px) scale(0.98);
}

.quiz-option-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--la-yellow);
    color: var(--dark-blue);
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.quiz-option-text {
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

/* Quiz Results */
.quiz-results {
    text-align: center;
    padding: 2rem 0;
}

.quiz-results-header {
    margin-bottom: 2.5rem;
}

.quiz-results-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    font-weight: 800;
    margin-bottom: 2rem;
}

.quiz-score-circle {
    width: 200px;
    height: 200px;
    border: 10px solid;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quiz-score-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.quiz-score-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

.quiz-results-message {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--la-yellow);
}

.quiz-results-message p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.quiz-results-breakdown {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.quiz-results-breakdown h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quiz-results-breakdown p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.quiz-results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.quiz-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    #valgquiz-container {
        padding: 2rem 1.5rem;
    }

    .quiz-title {
        font-size: 1.6rem;
    }

    .quiz-question {
        font-size: 1.2rem;
    }

    .quiz-option {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .quiz-option-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .quiz-results-title {
        font-size: 1.8rem;
    }

    .quiz-score-circle {
        width: 150px;
        height: 150px;
    }

    .quiz-score-percentage {
        font-size: 2.5rem;
    }

    .quiz-results-actions {
        flex-direction: column;
    }

    .quiz-results-actions .btn {
        width: 100%;
    }
}


/* ============================================
   PROFESSIONAL MÆRKESAGER LAYOUT
   ============================================ */

/* Desktop: 2x2 Grid for cards, image section BELOW */
.maerkesager-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.maerkesager-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Move image section (Michael + Valgkort) BELOW cards */

/* Improved card styling */
.maerkesag-card {
    min-height: 280px;
    transition: all 0.3s ease;
}

.maerkesag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 75, 135, 0.2);
}

/* Better icon sizing */
.maerkesag-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Improved title */
.maerkesag-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

/* Better description */
.maerkesag-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Tablet: Keep 2 columns but reduce spacing */

/* ================================================
   MÆRKESAGER IMAGE SECTION (BALLOT + MICHAEL)
   ================================================ */

.maerkesager-image-section {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    order: 2;
    margin-top: 2rem;
    padding: 2rem 0;
}

.ballot-card-column {
    flex: 0 1 450px;
    max-width: 500px;
}

.michael-portrait-column {
    flex: 0 1 350px;
    max-width: 450px;
}

.michael-portrait {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

    transform: translateY(-5px);
}
@media (max-width: 991px) {
    .maerkesager-image-section {
        gap: 2rem;
        justify-content: center;
    }
    
    .ballot-card-column {
        flex: 1 1 100%;
        max-width: 600px;
    }
    
    /* Skjul Michael på tablet */
    .michael-portrait-column {
        display: none;
    }
}

/* Mobile: Full width stacking */
@media (max-width: 768px) {
    .maerkesager-image-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .ballot-card-column {
        width: 100%;
        max-width: 500px;
    }
    
    /* Skjul Michael på mobil */
    .michael-portrait-column {
        display: none;
    }
    
    .ballot-card {
        padding: 1.5rem;
    }
    
    .ballot-title {
        font-size: 1.2rem;
    }
    
    .ballot-list-letter {
        font-size: 2.5rem;
    }
    
    .ballot-candidate-name {
        font-size: 1.3rem;
    }
}

/* ================================================
   TIMELINE MOBILE RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    /* Timeline mobile: single column layout */
    .timeline-section .container > div:last-child {
        max-width: 100% !important;
        padding: 0 1rem;
    }

    /* Hide center timeline line on mobile */
    .timeline-section .container > div:last-child > div[style*="position: absolute"] {
        display: none;
    }

    /* Timeline entries: card layout on mobile */
    .timeline-section div[style*="display: flex"][style*="align-items: center"] {
        display: block !important;
        background: white !important;
        padding: 1.2rem !important;
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        border-left: 5px solid var(--la-yellow) !important;
    }

    /* Show content from both left and right divs on mobile */
    .timeline-section div[style*="display: flex"] > div:first-child {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Hide empty left divs */
    .timeline-section div[style*="display: flex"] > div:first-child:empty {
        display: none !important;
    }

    /* Hide timeline icons on mobile - use cards instead */
    .timeline-section div[style*="border-radius: 50%"] {
        display: none !important;
    }

    /* Content: full width on mobile */
    .timeline-section div[style*="display: flex"] > div:last-child {
        flex: 1 !important;
        padding-left: 0 !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Hide empty right divs */
    .timeline-section div[style*="display: flex"] > div:last-child:empty {
        display: none !important;
    }

    /* Timeline h3: smaller on mobile */
    .timeline-section h3 {
        font-size: 1.1rem !important;
    }

    /* Timeline p: smaller on mobile */
    .timeline-section p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    /* Very small screens: further optimization */
    .timeline-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
    }

    .timeline-section p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    .timeline-section div[style*="display: flex"][style*="align-items: center"] {
        padding: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
}

/* ================================================
   ADDITIONAL MOBILE GRID FIXES
   ================================================ */
@media (max-width: 768px) {
    /* Biography section grid (om.html) */
    .biography-section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Contact section grid (kontakt.html) */
    .contact-section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Contact info grid (inner grids in kontakt.html) */
    .contact-section div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 1rem"] {
        grid-template-columns: 1fr !important;
    }

    /* Press section grid (sponsor.html) */
    section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    /* Very small screens: reduce gap further */
    .biography-section .container > div,
    .contact-section .container > div {
        gap: 1.5rem !important;
    }
}

/* ================================================
   STICKY CTA MOBILE RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    /* Sticky CTA logo: smaller on tablets/phones */
    .sticky-cta-logo {
        height: 24px !important;
        margin-right: 0.75rem !important;
    }

    /* Sticky CTA text: smaller on mobile */
    .sticky-cta-text {
        font-size: 0.9rem !important;
    }

    /* Sticky CTA content: adjust padding */
    .sticky-cta-content {
        padding: 0.75rem 1rem !important;
    }

    /* Sticky CTA buttons: ensure adequate touch targets */
    .sticky-cta-buttons .btn-small {
        min-height: 44px !important;
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 480px) {
    /* Very small screens: even smaller logo */
    .sticky-cta-logo {
        height: 20px !important;
        margin-right: 0.5rem !important;
    }

    /* Sticky CTA text: further reduce */
    .sticky-cta-text {
        font-size: 0.85rem !important;
    }

    /* Stack buttons vertically if needed */
    .sticky-cta-buttons {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100%;
    }

    .sticky-cta-buttons .btn-small {
        width: 100% !important;
    }
}

@media (max-width: 375px) {
    /* iPhone SE and very small phones */
    .sticky-cta-logo {
        height: 18px !important;
    }

    .sticky-cta-text {
        font-size: 0.8rem !important;
    }
}

/* ================================================
   CHATBOT FIXES - SCROLL + MOBILE
   ================================================ */

/* Chatbot Messages Container - Enable Scrolling */
.chat-messages {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 400px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

/* Chatbot Body - Proper Height */
.faq-chat-body {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
}

/* Chatbot Mobile Responsive */
@media (max-width: 768px) {
    /* Chatbot toggle button - touch friendly */
    .faq-chatbot-toggle {
        min-height: 56px !important;
        min-width: 56px !important;
        padding: 1rem !important;
    }

    /* Chat window - full screen on mobile */
    .faq-chat-window {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        height: 100dvh !important; height: -webkit-fill-available !important;
        max-height: 100dvh !important; height: -webkit-fill-available !important;
        border-radius: 0 !important;
    }

    /* Messages container - more height on mobile */
    .chat-messages {
        max-height: 60vh !important;
    }

    /* Question buttons - touch friendly */
    .chat-message button,
    .faq-question-btn {
        min-height: 48px !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    /* Search input - touch friendly */
    .chat-search-input {
        min-height: 48px !important;
        font-size: 16px !important; /* Prevents iOS zoom */
    }

    /* Search button - touch friendly */
    .chat-search-btn {
        min-width: 48px !important;
        min-height: 48px !important;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .chat-messages {
        max-height: 50vh !important;
    }
}


/* ================================================
   CALCULATOR PLACEHOLDER FIX
   ================================================ */

/* Calculator Input Placeholder - Dark Gray Color */
.calculator-input::placeholder {
    color: #666 !important;
    opacity: 1 !important;
}

.calculator-input::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1 !important;
}

.calculator-input::-moz-placeholder {
    color: #666 !important;
    opacity: 1 !important;
}

.calculator-input:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1 !important;
}


/* ================================================
   CALCULATOR RESULT COLOR FIX
   ================================================ */

/* Result Impact Section - Dark Background with Yellow Text */
.result-impact {
    background: linear-gradient(135deg, #002F5D 0%, #001a3d 100%) !important;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-left: 4px solid var(--la-yellow);
}

.result-impact h4 {
    color: var(--la-yellow) !important;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.result-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-impact li {
    padding: 0.5rem 0;
    color: white !important;
    position: relative;
    padding-left: 1.5rem;
}

.result-impact li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--la-yellow) !important;
    font-weight: 700;
}

/* Mobile adjustments for result impact */
@media (max-width: 768px) {
    .result-impact h4 {
        font-size: 1.1rem !important;
    }

    .result-impact li {
        font-size: 0.95rem !important;
    }
}

/* ================================================
   FAQ CHATBOT - COMPLETE CSS SYSTEM
   Desktop + Mobile Responsive
   LA Branding: Yellow (#FFD100) + Dark Blue (#002F5D)
   ================================================ */

/* ===== CHATBOT WIDGET CONTAINER ===== */
.faq-chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== TOGGLE BUTTON (DESKTOP) ===== */
.faq-chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--la-yellow, #FFD100);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    color: #002F5D;
}

.faq-chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.faq-chatbot-toggle:active {
    transform: translateY(0);
}

/* Toggle button icon */
.faq-chatbot-toggle .chat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-chatbot-toggle .chatbot-bear-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-chatbot-toggle .chat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #002F5D;
}

/* ===== CHAT WINDOW (DESKTOP) ===== */
.faq-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.3s ease;
}

.faq-chat-window.open {
    display: flex;
}

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

/* ===== CHAT HEADER ===== */
.faq-chat-header {
    background: linear-gradient(135deg, #002F5D 0%, #001a3d 100%);
    color: white;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.faq-chat-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.faq-chat-header .header-text h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--la-yellow, #FFD100);
}

.faq-chat-header .header-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Close button */
.chat-close-btn {
    margin-left: auto;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: opacity 0.2s;
}

.chat-close-btn:hover {
    opacity: 0.7;
}

/* ===== CHAT BODY ===== */
.faq-chat-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.25rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Scrollbar styling */
.faq-chat-body::-webkit-scrollbar {
    width: 8px;
}

.faq-chat-body::-webkit-scrollbar-track {
    background: #e9ecef;
}

.faq-chat-body::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 4px;
}

.faq-chat-body::-webkit-scrollbar-thumb:hover {
    background: #868e96;
}

/* ===== MESSAGES ===== */
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 400px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: fadeInMessage 0.3s ease;
}

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

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--la-yellow, #FFD100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.message-bubble {
    max-width: 75%;
    padding: 0.875rem 1.125rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.bot-message .message-bubble {
    background: white;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-message .message-bubble {
    background: #002F5D;
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 47, 93, 0.2);
}

/* ===== QUICK QUESTIONS ===== */
.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-questions h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    margin: 0 0 0.5rem 0;
}

.quick-question-btn,
.faq-question-btn {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: #212529;
}

.quick-question-btn:hover,
.faq-question-btn:hover {
    background: var(--la-yellow, #FFD100);
    border-color: var(--la-yellow, #FFD100);
    transform: translateX(4px);
}

/* ===== CHAT FOOTER ===== */
.faq-chat-footer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

/* Search input */
.chat-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.chat-search-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.chat-search-input:focus {
    outline: none;
    border-color: var(--la-yellow, #FFD100);
}

.chat-search-btn {
    background: var(--la-yellow, #FFD100);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    color: #002F5D;
    transition: all 0.2s ease;
}

.chat-search-btn:hover {
    background: #e6bd00;
    transform: scale(1.05);
}

/* Category filters */
.chat-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chat-category-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #495057;
}

.chat-category-btn:hover,
.chat-category-btn.active {
    background: var(--la-yellow, #FFD100);
    border-color: var(--la-yellow, #FFD100);
    color: #002F5D;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Toggle button - larger touch target */
    .faq-chatbot-toggle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        gap: 0;
    }

    .faq-chatbot-toggle .chat-icon {
        width: 36px;
        height: 36px;
    }

    .faq-chatbot-toggle .chat-label {
        display: none; /* Hide "Spørgsmål?" text on mobile */
    }

    /* Chat window - full screen overlay */
    .faq-chat-window {
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100dvh !important; height: -webkit-fill-available !important;
        max-width: 100% !important;
        max-height: 100dvh !important; height: -webkit-fill-available !important;
        border-radius: 0 !important;
    }

    /* Header - sticky at top */
    .faq-chat-header {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    /* Body - fill remaining space */
    .faq-chat-body {
        flex: 1;
        padding: 1rem;
        min-height: 0; /* Fix for flex overflow */
    }

    /* Messages - more height on mobile */
    .chat-messages {
        max-height: 60vh !important;
    }

    /* Message bubbles - adjust width */
    .message-bubble {
        max-width: 85%;
    }

    /* Footer - sticky at bottom */
    .faq-chat-footer {
        position: sticky;
        bottom: 0;
        z-index: 10;
        padding: 1rem;
    }

    /* Search input - prevent iOS zoom */
    .chat-search-input {
        font-size: 16px !important;
        min-height: 48px;
    }

    /* Search button - touch friendly */
    .chat-search-btn {
        min-width: 48px;
        min-height: 48px;
        padding: 0.75rem;
    }

    /* Question buttons - touch friendly */
    .quick-question-btn,
    .faq-question-btn {
        min-height: 48px !important;
        padding: 0.875rem 1rem !important;
        font-size: 1rem !important;
    }

    /* Category buttons - touch friendly */
    .chat-category-btn {
        min-height: 40px;
        padding: 0.625rem 1rem;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .faq-chat-header {
        padding: 1rem;
    }

    .faq-chat-header img {
        width: 40px;
        height: 40px;
    }

    .faq-chat-header .header-text h3 {
        font-size: 1rem;
    }

    .faq-chat-header .header-text p {
        font-size: 0.8rem;
    }

    .faq-chat-body {
        padding: 0.875rem;
    }

    .message-bubble {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .chat-messages {
        max-height: 50vh !important;
    }

    .faq-chat-footer {
        padding: 0.875rem;
    }
}

/* ===== ANIMATIONS & LOADING ===== */
.chatbot-loading {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.chatbot-loading span {
    width: 8px;
    height: 8px;
    background: #adb5bd;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.chatbot-loading span:nth-child(1) {
    animation-delay: -0.32s;
}

.chatbot-loading span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== ACCESSIBILITY ===== */
.faq-chatbot-toggle:focus,
.chat-search-input:focus,
.chat-search-btn:focus,
.quick-question-btn:focus,
.chat-category-btn:focus {
    outline: 2px solid var(--la-yellow, #FFD100);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================
   MOBILE CALCULATOR CTA
   Erstat chatbot og sticky CTA bar på mobil
   ================================================ */

/* Hide chatbot completely on mobile */
@media (max-width: 768px) {
    .faq-chatbot-widget {
        display: none !important;
    }
}

/* Hide existing sticky CTA bar on mobile */
@media (max-width: 768px) {
    .sticky-cta {
        display: none !important;
    }
}

/* Mobile Calculator CTA - Bottom Sticky Button */
.mobile-calculator-cta {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-calculator-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99999;
        background: var(--la-yellow, #FFD100);
        padding: 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
    }

    .mobile-calculator-cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        min-height: 60px;
        background: #002F5D;
        color: white;
        border: none;
        border-radius: 12px;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 47, 93, 0.3);
        text-decoration: none;
    }

    .mobile-calculator-cta-button:active {
        opacity: 0.85;
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 47, 93, 0.3);
    }

    .mobile-calculator-cta-icon {
        font-size: 1.5rem;
        line-height: 1;
    }

    .mobile-calculator-cta-text {
        flex: 1;
        text-align: center;
    }

    .mobile-calculator-cta-arrow {
        font-size: 1.25rem;
        line-height: 1;
    }

    @keyframes slideInFromBottom {
        0% {
            transform: translateY(100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}
}

/* Smaller phones - reduce padding */
@media (max-width: 480px) {
    .mobile-calculator-cta {
        padding: 0.875rem;
    }

    .mobile-calculator-cta-button {
        min-height: 56px;
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }

    .mobile-calculator-cta-icon {
        font-size: 1.375rem;
    }
}

/* ================================================
   DUAL PARALLAX MOBILE FIX
   Hide Valgbjørnen, show only Michael on mobile
   ================================================ */
@media (max-width: 768px) {
    /* Hide Valgbjørnen (right side) completely on mobile */
    .dual-parallax-right {
        display: none !important;
    }

    /* Michael (left side) takes full width on mobile */
    .dual-parallax-left {
        grid-column: 1 / -1;
        min-height: 500px !important;
    }
}

/* ================================================
   MOBILE CALCULATOR CTA - CONTENT SPACING FIX
   Add space at bottom of main content on mobile only
   ================================================ */
@media (max-width: 768px) {
    /* Add space at bottom of last section to prevent hiding under mobile CTA */
    section:last-of-type {
        margin-bottom: 100px;
    }

    /* Footer should NOT have bottom margin (creates white space) */
    footer {
        margin-bottom: 0 !important;
    }

    /* Reset body padding on mobile (no extra space) */
    body {
        padding-bottom: 0 !important;
    }
}

/* Ensure no extra spacing on desktop */
@media (min-width: 769px) {
    body {
        padding-bottom: 0 !important;
    }
}

/* ================================================
   DIGITAL BALLOT SECTION - MOBILE RESPONSIVE
   ================================================ */

/* Desktop - ballot candidate grid */
.ballot-candidate-section {
    display: grid !important;
    grid-template-columns: 350px 1fr !important;
    gap: 3rem !important;
}

/* Tablet and Mobile */
@media (max-width: 968px) {
    .ballot-candidate-section {
        grid-template-columns: 300px 1fr !important;
        gap: 2rem !important;
    }

    .ballot-photo-column {
        width: 100%;
    }

    .ballot-redesign-header {
        padding: 1.5rem !important;
    }

    .ballot-redesign-header > div:first-child {
        font-size: 1.5rem !important;
    }

    .ballot-redesign-header > div:last-child {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    /* Stack photo and info vertically */
    .ballot-candidate-section {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .ballot-photo-column {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ballot header */
    .ballot-redesign-header {
        padding: 1.25rem !important;
    }

    .ballot-redesign-header > div:first-child {
        font-size: 1.3rem !important;
    }

    .ballot-redesign-header > div:last-child {
        font-size: 0.95rem !important;
    }

    /* Ballot main content */
    .ballot-main-content {
        padding: 2rem 1.5rem !important;
    }

    /* Party header */
    .ballot-party-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .ballot-party-header img {
        width: 60px !important;
        height: 60px !important;
    }

    .ballot-party-header > div > div:first-child {
        font-size: 3rem !important;
    }

    .ballot-party-header > div > div > div:first-child {
        font-size: 1.5rem !important;
    }

    /* Candidate name */
    .ballot-info-column h2 {
        font-size: 2rem !important;
    }

    /* Issues checklist heading */
    .issues-checklist h3 {
        font-size: 1.3rem !important;
    }

    /* Issue checkbox items */
    .issue-checkbox-item {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }

    .issue-checkbox-item > div:first-child {
        font-size: 2rem !important;
    }

    .issue-checkbox-item h4 {
        font-size: 1.1rem !important;
    }

    .issue-checkbox-item p {
        font-size: 0.95rem !important;
    }

    /* Quiz footer */
    .ballot-quiz-footer {
        padding: 1.5rem !important;
    }

    .ballot-quiz-footer > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .ballot-quiz-footer h3 {
        font-size: 1.5rem !important;
        text-align: center !important;
    }

    .ballot-quiz-footer p {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .ballot-quiz-footer button {
        width: 100%;
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
    }
}

@media (max-width: 480px) {
    /* Very small phones */
    .ballot-main-content {
        padding: 1.5rem 1rem !important;
    }

    .ballot-redesign-header {
        padding: 1rem !important;
    }

    .ballot-redesign-header > div:first-child {
        font-size: 1.1rem !important;
    }

    .ballot-info-column h2 {
        font-size: 1.75rem !important;
    }

    .issue-checkbox-item {
        padding: 0.875rem !important;
    }

    .issue-checkbox-item h4 {
        font-size: 1rem !important;
    }

    .issue-checkbox-item p {
        font-size: 0.9rem !important;
    }

    .ballot-quiz-footer h3 {
        font-size: 1.3rem !important;
    }
}

/* ================================================
   HIDE STICKY CTA BAR ON MOBILE
   Prevents overlap with mobile calculator CTA
   ================================================ */
@media (max-width: 768px) {
    .sticky-cta-bar {
        display: none !important;  /* Hidden on mobile */
    }
}

/* ================================================
   CALCULATOR TEXT VISIBILITY FIXES
   Production fix for white-on-white text issues
   Added: 23 Oct 2025
   ================================================ */

/* Ensure calculator input text is always visible - CORRECTED SELECTORS */
.tax-calculator-modal input[type="number"],
.tax-calculator-modal input[type="text"],
.tax-calculator-modal select,
.tax-calculator-content input,
.tax-calculator-body input,
.calculator-form input,
.calculator-form select {
    color: #002F5D !important;
    background-color: #ffffff !important;
    -webkit-text-fill-color: #002F5D !important; /* Safari/iOS fix */
}

/* Ensure placeholder text is visible */
.tax-calculator-modal input::placeholder,
.tax-calculator-content input::placeholder,
.calculator-form input::placeholder {
    color: #999999 !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #999999 !important; /* Safari/iOS fix */
}

/* Ensure result text is always visible */
.result-label {
    color: #333 !important;
}

.result-value {
    color: var(--dark-blue) !important;
}

.result-value-small {
    color: #666 !important;
}

/* Ensure buttons are clickable */
.tax-calculator-modal .btn {
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
}

/* Fix chatbot z-index conflict - chatbot must be above calculator modal */
.faq-chatbot-widget {
    z-index: 10001 !important;
}

/* ================================================
   COMPANY DATA FIELDS CONTRAST FIXES
   Production fix for poor readability on sponsor form
   Added: 23 Oct 2025
   ================================================ */

/* Improve contrast for company auto-fill section */
#companyAutoFields {
    background: #ffffff !important;
    border-left: 4px solid #4caf50 !important;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1) !important;
}

/* Dark, readable labels */
#companyAutoFields label {
    color: #1b5e20 !important;
    font-weight: 700 !important;
}

/* Ensure input text is dark and readable */
#companyAutoFields input {
    color: #212121 !important;
    background: #f9f9f9 !important;
    border: 2px solid #4caf50 !important;
    font-weight: 500 !important;
}

/* Success message text - dark green for good contrast */
#companyAutoFields > p {
    color: #1b5e20 !important;
    font-weight: 700 !important;
}

/* ================================================
   CHATBOT BUTTON FIXES
   Ensure all chatbot buttons are clickable
   Added: 23 Oct 2025
   ================================================ */

/* Ensure all chatbot buttons are clickable */
.faq-chatbot-widget button {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.quick-question-btn,
.search-result-btn,
.faq-chat-body button,
.chat-messages button {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure chat body allows interactions */
.faq-chat-body,
.chat-messages,
.quick-questions {
    pointer-events: auto !important;
}

/* ================================================
   CVR LOOKUP FORM MOBILE FIXES
   Ensure search button is visible on mobile
   Added: 23 Oct 2025
   ================================================ */

@media (max-width: 768px) {
    /* Make CVR lookup form stack vertically on mobile */
    #cvrLookupForm {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    /* Make search button full width on mobile */
    #cvrLookupForm button[type="submit"] {
        width: 100% !important;
        padding: 1.2rem !important;
        font-size: 1.1rem !important;
    }
    
    /* Ensure input is full width */
    #cvrLookupForm input {
        width: 100% !important;
    }
}

/* ================================================
   CHATBOT WINDOW POINTER-EVENTS FIXES
   Ensure chat window and all content is clickable
   Added: 23 Oct 2025
   ================================================ */

/* Ensure the chat window itself can receive clicks */
.faq-chat-window {
    pointer-events: auto !important;
}

/* Ensure chat window when open is fully interactive */
.faq-chat-window.open,
.faq-chatbot-widget.open .faq-chat-window {
    pointer-events: auto !important;
}

/* Ensure ALL elements inside chat window are clickable */
.faq-chat-window * {
    pointer-events: auto !important;
}

/* Extra specificity for header and footer */
.faq-chat-header,
.faq-chat-header *,
.faq-chat-footer,
.faq-chat-footer *,
.faq-chat-body,
.faq-chat-body * {
    pointer-events: auto !important;
}

/* Ensure button hover states work */
.faq-chat-window button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ================================================
   SPONSOR FORM CVR LOOKUP MOBILE FIXES
   Stack CVR input and button vertically on mobile
   Added: 23 Oct 2025
   ================================================ */

@media (max-width: 768px) {
    /* Sponsor CVR lookup - stack vertically */
    #sponsorCvrLookup {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    
    /* Remove top padding from button container */
    #sponsorCvrLookup > div:last-child {
        padding-top: 0 !important;
    }
    
    /* Make CVR button full width and below input */
    #sponsorForm #cvrLookupBtn {
        width: 100% !important;
        padding: 1.2rem !important;
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
    }
    
    /* Ensure CVR input is full width */
    #sponsorForm #cvr {
        width: 100% !important;
    }
}

/* ================================================
   PRESS SECTION MOBILE WHITESPACE FIX
   Reduce excessive whitespace under pressekit on mobile
   Added: 23 Oct 2025
   ================================================ */

@media (max-width: 768px) {
    /* Reduce press section padding on mobile */
    .press-section {
        padding: 3rem 0 2rem 0 !important;
    }
    
    /* Stack press grid to single column */
    .press-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Reduce container padding */
    .press-section div[style*="max-width: 800px"] {
        padding: 0 1rem !important;
    }
    
    /* Adjust heading sizes for mobile */
    .press-section h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .press-section > .container > div > p {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
}


/* ================================================
   INDUSTRY RECOMMENDATIONS - MOBILE FIX
   CVR Lookup Yellow Box Responsive Design
   ================================================ */
#industry-recommendations {
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

#industry-recommendations > div {
    max-width: 100% !important;
}

#industry-recommendations h4 {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

#industry-recommendations li {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

@media (max-width: 768px) {
    #industry-recommendations {
        padding: 1rem !important;
        margin-top: 1rem !important;
        width: calc(100% - 2rem) !important;
    }
    
    #industry-recommendations > div {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    #industry-recommendations h4 {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }
    
    #industry-recommendations ul {
        padding-left: 0.5rem !important;
    }
    
    #industry-recommendations li {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.75rem !important;
        padding-left: 1rem !important;
    }
    
    #industry-recommendations li strong {
        display: block !important;
        margin-bottom: 0.25rem !important;
    }
    
    #industry-recommendations p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}
