
:root {
    --primary-orange: #f97316;
    --secondary-orange: #ea580c;
    --footer-bg-light: #f5f5f5;
    --footer-text-dark: #111111;
    --footer-link-dark: #666666;
    --footer-link-hover: #f97316;
    --footer-border-light: #e5e5e5;
    --footer-copyright-bg: #808080;
    --footer-copyright-text: #ffffff;
}

/*------------------------------------
   MAIN FOOTER CONTAINER
--------------------------------------*/
.footer {
    background-color: #fafafa;
    color: var(--footer-text-dark);
    padding: 50px 0 20px;
    margin-top: 50px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    border-top: 1px solid var(--footer-border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*------------------------------------
   FOOTER CONTENT GRID
--------------------------------------*/
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 0;
}

.footer-col h3 {
    color: var(--footer-text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: -0.3px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
}

/*------------------------------------
   BRAND STORY
--------------------------------------*/
.brand-story .story-text {
    color: var(--footer-link-dark);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 400;
}

.brand-story .story-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.story-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
}

.story-tagline i {
    color: #e74c3c;
}

/*------------------------------------
   SOCIAL ICONS
--------------------------------------*/
.social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #e9e9e9;
    color: var(--footer-text-dark);
    font-size: 16px;
    text-decoration: none;
}

.social a:hover {
    background: var(--primary-orange);
    color: #ffffff;
}

/*------------------------------------
   FOOTER LINKS
--------------------------------------*/
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--footer-link-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
}

.footer-col ul li a i {
    width: 20px;
    color: var(--primary-orange);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
}

/*------------------------------------
   CONTACT INFO
--------------------------------------*/
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--footer-link-dark);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-info li i {
    width: 25px;
    color: var(--primary-orange);
    font-size: 14px;
}

/*------------------------------------
   PAYMENTS & COPYRIGHT BOTTOM
--------------------------------------*/
.payments {
    border-top: 1px solid var(--footer-border-light);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: var(--footer-link-dark);
    font-size: 14px;
    font-weight: 400;
    text-align: right;
}

.copyright strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.copyright .developer-credit {
    color: var(--primary-orange);
    font-weight: 600;
}

/*------------------------------------
   GO TO TOP BUTTON
--------------------------------------*/
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.go-top:hover {
    background: var(--secondary-orange);
}

.go-top.visible {
    display: flex;
}

/*------------------------------------
   TOAST NOTIFICATION
--------------------------------------*/
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    width: 100%;
    pointer-events: none;
}

.toast-notification {
    background: #ffffff;
    border-left: 4px solid var(--primary-orange);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--footer-border-light);
    pointer-events: auto;
    position: relative;
}

.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.warning {
    border-left-color: #ffc107;
}

.toast-notification .toast-icon {
    font-size: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-notification.success .toast-icon {
    color: #28a745;
}

.toast-notification.error .toast-icon {
    color: #dc3545;
}

.toast-notification.warning .toast-icon {
    color: #ffc107;
}

.toast-notification .toast-content {
    flex: 1;
}

.toast-notification .toast-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.toast-notification .toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 0 4px;
}

.toast-notification .toast-close:hover {
    color: #333;
}

/*------------------------------------
   RESPONSIVE - TABLET & MOBILE
--------------------------------------*/

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .footer {
        padding: 35px 0 15px;
        margin-top: 30px;
        display:none !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0;
    }
    
    .footer-col h3 {
        font-size: 17px;
        font-weight: 700;
    }
    
    .footer-col h3::after {
        left: 0;
    }
    
    .social {
        justify-content: flex-start;
    }
    
    .payments {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        text-align: center;
        font-size: 13px;
    }
    
    .go-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Mobile (576px and below) - HIDE FOOTER CONTENT */
@media (max-width: 576px) {
    .footer {
        padding: 20px 0 10px;
        margin-top: 20px;
        display: none !important;
    }
    
    .footer-container {
        display: none !important;
        padding: 0 12px;
    }
    
    .footer-content {
        display: none !important;
    }
    
    .footer-col {
        display: none !important;
    }
    
    .payments {
        display: none !important;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        display: none !important;
        font-size: 12px;
        text-align: center;
    }
    
    .copyright .developer-credit {
        display: none !important;
    }
    
    .go-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
    
    .toast-notification {
        padding: 12px 16px;
    }
    
    .toast-notification .toast-title {
        font-size: 13px;
    }
    
    .toast-notification .toast-message {
        font-size: 12px;
    }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
    .footer {
        display: none !important;
    }
    
    .footer-container {
        display: none !important;
    }
    
    .footer-content {
        display: none !important;
    }
    
    .footer-col {
        display: none !important;
    }
    
    .payments {
        display: none !important;
    }
    
    .copyright {
        display: none !important;
    }
    
    .go-top {
        bottom: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/*------------------------------------
   ACCESSIBILITY
--------------------------------------*/
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/*------------------------------------
   UTILITY CLASSES
--------------------------------------*/
.mt-3 {
    margin-top: 1rem;
}

.mb-0 {
    margin-bottom: 0;
}