.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-9327cac *//* Modern Footer Styles - Scoped to footer only */
.modern-footer *,
.modern-footer *::before,
.modern-footer *::after {
    box-sizing: border-box;
}


/* Body styling - only for standalone HTML preview, not affecting WordPress/Elementor */
body:has(.modern-footer) {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.modern-footer {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    box-sizing: border-box;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Only affect footer, not other elements */
    isolation: isolate;
}

/* Ambient glow runt footern (liknande banner) */
.modern-footer::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    border-radius: 0;
    background: conic-gradient(from 180deg at 50% 50%, #7aa4ff33, #ff7ad633, #ffd96633, #7aa4ff33);
    filter: blur(18px);
    animation: ep-rotate 18s linear infinite;
    pointer-events: none;
}

/* Spotlight i bakgrunden */
.modern-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(800px 400px at 20% 10%, rgba(255,255,255,.06), transparent 60%),
                radial-gradient(600px 300px at 80% 90%, rgba(255,255,255,.04), transparent 60%);
    animation: ep-pan 24s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes ep-rotate {
    to { transform: rotate(360deg); }
}

@keyframes ep-pan {
    0% { background-position: 0 0, 100% 100%; }
    100% { background-position: 100% 0, 0 100%; }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Top Section */
.footer-top {
    margin-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-wide {
    grid-column: span 1;
}

@media (min-width: 1024px) {
    .footer-column-wide {
        grid-column: span 2;
    }
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #4a90e2;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4a90e2;
    border-radius: 2px;
}

.footer-title-inline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a90e2;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin: 0;
    padding: 0;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.2);
}

.footer-text {
    font-family: 'Poppins', sans-serif;
    color: #b0b0b0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-text i {
    color: #4a90e2;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-text.address address {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-style: normal;
    margin: 0;
}

/* Social Links */
.social-link {
    background: rgba(74, 144, 226, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

/* TrustPilot */
.trustpilot {
    margin-top: 0.5rem;
}

.trustpilot-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #00b67a;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trustpilot-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
    border-left-color: #00d493;
}

.trustpilot i {
    color: #00b67a;
    font-size: 1.25rem;
}

.trustpilot-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trustpilot-rating span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #ffc107;
    font-size: 0.875rem;
}

/* Google Rating */
.google-rating {
    margin-top: 0.5rem;
}

.google-rating-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #4285f4;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.google-rating-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
    border-left-color: #5a9ef7;
}

.google-rating i {
    color: #4285f4;
    font-size: 1.25rem;
}

.google-rating-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.google-rating-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.google-rating-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.google-stars {
    display: flex;
    gap: 0.2rem;
}

.google-stars i {
    color: #ffc107;
    font-size: 0.875rem;
}

.google-reviews {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #b0b0b0;
    font-weight: 400;
}

/* Company Description */
.footer-description {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Newsletter Signup */
.newsletter-signup {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    padding-bottom: 1rem;
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-signup .sender-form-field {
    max-width: 350px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-signup .sender-form-field input,
.newsletter-signup .sender-form-field button {
    font-family: 'Poppins', sans-serif !important;
}

.sender-form-field {
    width: 100% !important;
    max-width: 320px !important;
    min-height: 80px !important;
    display: block;
    margin-top: 0.5rem;
    transform: scale(0.75);
    transform-origin: top left;
    margin-left: 0;
    margin-bottom: -25%;
}


.sender-form-field iframe {
    width: 100% !important;
    min-height: 100px !important;
    border: none !important;
    background: transparent !important;
}

/* Style Sender.net form elements - Compact version */
.sender-form-field form,
.sender-form-field .sender-form {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    max-width: 350px !important;
}

.sender-form-field input[type="email"],
.sender-form-field input[type="text"] {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px !important;
    padding: 0.5rem 0.75rem !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.sender-form-field input[type="email"]:focus,
.sender-form-field input[type="text"]:focus {
    outline: none !important;
    border-color: #4a90e2 !important;
    background: rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
}

.sender-form-field input[type="email"]::placeholder,
.sender-form-field input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.85rem !important;
}

.sender-form-field button[type="submit"],
.sender-form-field input[type="submit"],
.sender-form-field .sender-form-submit {
    background: #4a90e2 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.55rem 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.25) !important;
}

.sender-form-field button[type="submit"]:hover,
.sender-form-field input[type="submit"]:hover,
.sender-form-field .sender-form-submit:hover {
    background: #357abd !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.35) !important;
}

.sender-form-field label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
    display: block !important;
}

/* Payment Methods Section */
.footer-payments {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.payments-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 500;
    color: #b0b0b0;
    letter-spacing: 0.3px;
    margin: 0;
    text-align: left;
    display: block;
    width: 100%;
}

.payment-logos {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0;
    text-align: left;
}

.payment-logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.payment-logo-image:hover {
    filter: brightness(1);
}

/* Bottom Section */
.footer-bottom {
    padding-top: 2rem;
}

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

.copyright {
    color: #888888;
    font-size: 0.875rem;
}

.dhl-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dhl-text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem;
    color: #b0b0b0;
    white-space: nowrap;
}

.dhl-compact img {
    max-height: 35px;
    height: auto;
    width: auto;
    display: block;
}

.footer-promo {
    display: flex;
    align-items: center;
}

.promo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(74, 144, 226, 0.15);
    border: 1px solid #4a90e2;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.promo-link:hover {
    background: #4a90e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.promo-link i {
    font-size: 1rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(74, 144, 226, 0.6);
}

.chat-widget i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column-wide {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .dhl-compact {
        justify-content: center;
    }

    .footer-payments {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    .payment-logo-image {
        max-width: 100%;
    }

    .payments-text {
        font-size: 0.85rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modern-footer::before,
    .modern-footer::after {
        animation: none;
    }

    .chat-widget {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .chat-widget i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 0.8rem;
    }

    .footer-link,
    .footer-text {
        font-size: 0.85rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }/* End custom CSS */