.footer-wrapper-fullwidth {
    width: 100vw;
    background-color: #35404a;
    padding: 0;
    box-sizing: border-box;
    display: block;
    clear: both;
    flex-shrink: 0;
	margin-top: 100px;
}

.footer-wrapper-fullwidth * {
    box-sizing: border-box;
}

.site-footer {
    font-size: 1.2em;
    background-color: #35404a;
    color: #ffffff;
    padding: 60px 0 30px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 30px 0;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 50px;
    padding-right: 40px;
    position: relative;
}

.footer-column::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

.footer-column:last-child::after {
    display: none;
}

#colophon h3 {
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
}

#colophon h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
}

#colophon h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.footer-menu li:hover {
    transform: translateX(5px);
}

#colophon a, 
#colophon a:hover, 
#colophon a:visited, 
#colophon a:active, 
#colophon p {
    color: #ffffff !important;
    text-decoration: none;
    line-height: 1.6;
    opacity: 1;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
}

.footer-menu a,
.footer-menu a:hover,
.footer-menu a:visited,
.footer-menu a:active {
    color: #ffffff !important;
    opacity: 1;
    position: relative;
    display: inline-block;
    padding: 5px 0;
    transition: all 0.2s ease;
}

.post-excerpt {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 1;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
}

.article-link,
.article-link:hover,
.article-link:visited,
.article-link:active {
    display: inline-block;
    color: #ffffff !important;
    text-decoration: none;
    margin-top: 10px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
}

.signup-button {
    display: inline-block;
    background-color: #9F1438;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 25px;
    margin-top: 15px;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.05rem;
    min-height: 44px;
    letter-spacing: 0.5px;
}

.signup-button:hover {
    background-color: #85102f;
    transform: translateY(-3px);
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.social-section {
    display: flex;
    align-items: center;
    margin: 40px 0 30px;
    justify-content: flex-start;
}

.social-section p {
    color: #ffffff !important;
    margin-right: 20px;
    opacity: 1;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.05rem;
}

.social-section a {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    transition: transform 0.2s;
}

.social-section a:hover {
    transform: translateY(-5px);
}

.social-section img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
    opacity: 1;
}

/* Remove divider */
.divider {
    display: none;
}

.company-info {
    display: flex;
    align-items: flex-end; 
    justify-content: space-between; 
    padding: 30px 0;
}

.right-group {
    display: flex;
    gap: 80px; 
    margin-left: auto; 
    align-items: flex-end;
}

.company-logo {
    display: flex;
    align-items: center;
}

.company-logo img { 
    max-width: 80px; 
    height: auto; 
    filter: brightness(1.2);
	margin-bottom: 20px;
}

.company-details, .company-contact { 
    color: #ffffff !important;
    opacity: 1;
    line-height: 1.6;
    text-align: left;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
	margin-top: 20px;
}

.company-contact {margin-bottom: -20px;}


.company-contact a,
.company-contact a:hover,
.company-contact a:visited,
.company-contact a:active {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 1;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
    transition: color 0.2s;
}

.copyright {
    color: #ffffff !important;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.05rem;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
}

#footer-social + nav .footer-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

#footer-social + nav .footer-menu li {
    margin-right: 25px; 
    margin-bottom: 10px;
}

#footer-social + nav .footer-menu li:hover {
    transform: translateY(-5px);
}

#footer-social + nav .footer-menu i.fa-brands {
    font-size: 2.2em;
    transition: transform 0.2s;
}

#footer-social + nav .footer-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

#footer-social + nav .footer-menu a:hover i {
    color: #ffffff !important;
    transform: scale(1.15);
}

.footer-divider{display: none;}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #9F1438;
    color: white !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: #85102f;
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 1.5em;
}

/* Medium screens */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
        padding: 30px 20px 0;
    }
    
    .footer-column {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 25px;
    }
    
    .footer-column::after {
        display: none;
    }
    
    .footer-bottom {
        padding: 0 20px;
    }
    
    .footer-bottom::before {
        left: 20px;
        right: 20px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px;
        font-size: 1.1em;
    }
    
    .footer-container {
        padding: 0 15px 30px;
    }
    
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    #colophon h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .footer-menu li {
        margin-bottom: 15px;
    }
    
    .footer-menu li a {
        display: inline-block;
        padding: 5px 0;
        min-height: 44px;
    }
    
    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    
    .right-group {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        margin-left: 0;
        margin-top: 25px;
        align-items: center;
    }
    
    .company-logo {
        margin: 0 auto 10px;
    }
    
    .company-details, 
    .company-contact {
        text-align: center;
        width: 100%;
    }
    
    .company-details p, 
    .company-contact p {
        margin-bottom: 8px;
    }
    
    .company-contact a,
    .company-details a {
        display: inline-block;
        padding: 5px 0;
        min-height: 44px;
    }
    
    .footer-bottom {
        padding: 0 15px;
    }
    
    .social-section {
        justify-content: center;
        flex-wrap: wrap;
        margin: 30px 0 20px;
    }
    
    .social-section a {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .signup-button {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .footer-bottom::before {
        left: 15px;
        right: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Small screens */
@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 10px 20px;
    }
    
    #colophon h3 {
        margin-bottom: 15px;
    }
    
    .footer-column {
        margin-bottom: 25px;
    }
    
    .company-logo img {
        max-width: 70px;
    }
    
    .right-group {
        gap: 20px;
    }
    
    #footer-social + nav .footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    #footer-social + nav .footer-menu li {
        margin-bottom: 10px;
    }
    
    #footer-social + nav .footer-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-bottom {
        padding: 0 10px;
    }
    
    .footer-bottom::before {
        left: 10px;
        right: 10px;
    }
    
    .copyright {
        font-size: 0.95rem;
    }
}

/* Floating button mobile improvements */
.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    background-color: #9F1438 !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    min-height: 44px;
}

.floating-button:hover {
    background-color: #85102f !important;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .floating-button {
        padding: 0.875rem 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .floating-button {
        padding: 0.875rem;
        border-radius: 0;
        min-width: 44px;
        min-height: 44px;
    }
    
    .floating-button .button-text {
        display: none;
    }
}
