

/* ===============================
   RESET & BASE STYLES
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    scroll-behavior: smooth;
    background: #111;
    color: #fff;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ===============================
   WHAT WE OFFER SECTION
================================ */
.freshora-what-we-offer {
    background: #1c1c1d;
    padding: 50px 20px;
}

.offer-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-links-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* DESKTOP: Wrap links normally - LEFT ALIGNED */
.offer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.offer-link {
    min-width: 200px;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #85c815;
    border-radius: 8px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.offer-link:hover {
    background: #1c1c1d;
    color: #85c815;
    border-color: #85c815;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(133, 200, 21, 0.3);
}

/* Scroll Buttons - Hidden by default */
.scroll-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #85c815;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    background: #7ab712;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 5px;
}

.scroll-right {
    right: 5px;
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
}

/* ===============================
   FOOTER STYLES
================================ */
.freshora-footer {
    position: relative;
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 70px 0 30px;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0.05;
    pointer-events: none;
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Section - LEFT ALIGNED */
.footer-brand-section {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
    text-align: justify;
    margin-bottom: 25px;
}

.footer-formula {
   
    font-weight: 600;
}

/* Social Media - LEFT ALIGNED */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon-img {
    width: 22px;
    height: 22px;
    display: block;
}

.fb-btn { background-color: #1877F2; }
.insta-btn { background-color: #E4405F; }
.pin-btn { background-color: #E60023; }
.yt-btn { background-color: #FF0000; }
.linkedin-btn { background-color: #0A66C2; }

/* Links Section - LEFT ALIGNED */
.footer-locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.footer-heading {
    color: #fff !important;
    font-size: 19px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #91d904;
    display: inline-block;
    font-weight: 600;
}

.office-info {
    margin-bottom: 30px;
}

.office-name {
   
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-address {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 10px;
}

.office-phone {
    font-size: 15px;
    color: #ccc;
}

.phone-link,
.email-link,
.gbp-link {
    color: red;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover,
.gbp-link:hover {
    color: #fff;
    text-decoration: underline;
}

.office-location {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 20px;
}

.office-email {
    color: #91d904;
    margin-top: 15px;
}

/* Quick Links - LEFT ALIGNED */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-link:hover {
    color: #91d904;
    opacity: 1;
    padding-left: 8px;
}

.find-us-heading {
    margin-top: 30px;
}

.google-business {
    font-size: 15px;
    line-height: 1.7;
}

.footer-duns1:hover{
        color: #fff !important;

}
/* Dun & Bradstreet */
.footer-duns {
    font-size: 15px;
    color: #91d904 !important;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #333;
    text-align: center;
}

.duns-text {
    margin: 0;
    line-height: 1.6;
}

.duns-text:hover{
    color: #fff;
}
/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #333;
}

.footer-copyright {
    font-size: 14px;
    color: #d3c6c6;
    text-align: center;
}

/* ===============================
   FLOATING CONTACT BUTTONS
================================ */
.floating-contact-btns {
    position: fixed;
    right: 25px;
    bottom: 140px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.floating-btn {
    display: block;
}

.floating-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-img:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* ===============================
   BACK TO TOP BUTTON - ALWAYS VISIBLE
================================ */
.back-to-top.always-visible {
    position: fixed;
    bottom: 70px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #85c815;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(133, 200, 21, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.always-visible:hover {
    background: #7ab712;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(133, 200, 21, 0.4);
}

.back-to-top.always-visible:active {
    transform: translateY(-2px);
}

.back-to-top.always-visible svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.back-to-top.always-visible:hover svg {
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE DESIGN - LEFT ALIGNED EVERYTHING
================================ */

/* MOBILE & TABLET: Horizontal Slider */
@media (max-width: 1024px) {
    /* What We Offer Section - Slider on Mobile/Tablet */
    .offer-links-wrapper {
        padding: 0 px;
    }
    
    /* Convert to horizontal slider */
    .offer-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 15px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .offer-links::-webkit-scrollbar {
        display: none;
    }
    
    .offer-link {
        min-width: 180px;
        padding: 12px 18px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    /* Show scroll buttons on mobile/tablet */
    .scroll-btn {
        display: flex;
        width: 45px;
        height: 45px;
    }
    
    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-section {
        padding-right: 0;
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Adjust floating buttons for mobile/tablet */
    .floating-contact-btns {
        right: 20px;
        bottom: 130px;
    }
    
    .back-to-top.always-visible {
        right: 20px;
        bottom: 65px;
        width: 50px;
        height: 50px;
    }
    
    .back-to-top.always-visible svg {
        width: 24px;
        height: 24px;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .freshora-what-we-offer {
        padding: 40px 15px;
    }
    
    .offer-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .offer-links-wrapper {
        padding: 0 70px;
    }
    
    .offer-links {
        gap: 15px;
        padding: 15px 5px;
    }
    
    .offer-link {
        min-width: 200px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .scroll-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Tablet Footer */
    .footer-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .freshora-footer {
        padding: 50px 0 25px;
    }
    
    .footer-logo-img {
        width: 140px;
        height: 140px;
    }
    
    .floating-contact-btns {
        right: 15px;
        bottom: 120px;
    }
    
    .floating-img {
        width: 55px;
        height: 55px;
    }
    
    .back-to-top.always-visible {
        right: 15px;
        bottom: 60px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top.always-visible svg {
        width: 22px;
        height: 22px;
    }
}

/* Mobile (Below 768px) */
@media (max-width: 767px) {
    .freshora-what-we-offer {
        padding: 35px 15px;
    }
    
    .offer-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .offer-links-wrapper {
        padding: 0 60px;
    }
    
    .offer-links {
        gap: 10px;
        padding: 12px 5px;
    }
    
    .offer-link {
        min-width: 160px;
        padding: 11px 16px;
        font-size: 13px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
    }
    
    .footer-wrapper {
        padding: 0 15px;
    }
    
    .footer-grid {
        gap: 35px;
    }
    
    .footer-logo-img {
        width: 130px;
        height: 130px;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-heading {
        font-size: 17px;
    }
    
    .office-address,
    .office-location,
    .quick-link,
    .google-business {
        font-size: 14px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-btn {
        width: 42px;
        height: 42px;
    }
    
    .social-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .footer-duns,
    .footer-copyright {
        font-size: 13px;
    }
    
    .floating-contact-btns {
        right: 15px;
        bottom: 120px;
    }
    
    .floating-img {
        width: 55px;
        height: 55px;
    }
    
    .back-to-top.always-visible {
        right: 15px;
        bottom: 60px;
        width: 48px;
        height: 48px;
    }
    
    .back-to-top.always-visible svg {
        width: 22px;
        height: 22px;
    }
}

/* Small Mobile (Below 576px) */
@media (max-width: 576px) {
    .freshora-what-we-offer {
        padding: 30px 12px;
    }
    
    .offer-title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .offer-links-wrapper {
        padding: 0 0px;
    }
    
    .offer-links {
        gap: 8px;
        padding: 10px 5px;
    }
    
    .offer-link {
        min-width: 150px;
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
    }
    
    .footer-wrapper {
        padding: 0 12px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .footer-tagline {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .social-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-img {
        width: 20px;
        height: 20px;
    }
    
    .floating-contact-btns {
        right: 12px;
        bottom: 110px;
    }
    
    .floating-img {
        width: 50px;
        height: 50px;
    }
    
    .back-to-top.always-visible {
        right: 12px;
        bottom: 55px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top.always-visible svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile (Below 400px) */
@media (max-width: 400px) {
    .offer-links-wrapper {
        padding: 0 0px;
    }
    
    .offer-links {
        gap: 6px;
        padding: 8px 5px;
    }
    
    .offer-link {
        min-width: 140px;
        padding: 9px 12px;
        font-size: 11px;
    }
    
    .scroll-btn {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-img {
        width: 110px;
        height: 110px;
    }
    
    .footer-tagline {
        font-size: 12px;
    }
    
    .social-btn {
        width: 38px;
        height: 38px;
    }
    
    .social-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .floating-img {
        width: 48px;
        height: 48px;
    }
    
    .back-to-top.always-visible {
        right: 10px;
        bottom: 52px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top.always-visible svg {
        width: 20px;
        height: 20px;
    }
}

/* DESKTOP ONLY (Above 1024px) - NO SLIDER */
@media (min-width: 1025px) {
    /* Desktop: Normal wrapped layout - LEFT ALIGNED */
    .offer-title {
        text-align:center;
    }
    
    .offer-links {
        /* Desktop: Normal wrap, no slider */
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        gap: 15px;
        padding: 10px 0;
    }
    
    .scroll-btn {
        display: none !important;
    }
    
    /* Desktop: Normal footer layout */
    .footer-brand-section {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .offer-link:hover {
        transform: none;
    }
    
    .social-btn:hover {
        transform: none;
    }
    
    .floating-img:hover {
        transform: none;
    }
    
    .back-to-top.always-visible:hover {
        transform: translateY(0);
    }
    
    .scroll-btn:hover {
        transform: translateY(-50%);
    }
    
    .back-to-top.always-visible:active {
        transform: scale(0.95);
    }
}
