/* Footer Styles */
.site-footer {
    position: relative;
    background-color: #0a0f2c;
    color: #fff;
    overflow: hidden;
}

.footer-wave-top {
    position: relative;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #0a0f2c);
    overflow: hidden;
}

/* Floating food icons styles */
.footer-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-food-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    z-index: 1;
    filter: blur(0.5px);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.floating-food-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 2rem;
}

.floating-food-icon:nth-child(2) {
    top: 50%;
    left: 20%;
    font-size: 1.8rem;
}

.floating-food-icon:nth-child(3) {
    top: 30%;
    left: 30%;
    font-size: 1.5rem;
}

.floating-food-icon:nth-child(4) {
    top: 60%;
    left: 40%;
    font-size: 2.2rem;
}

.floating-food-icon:nth-child(5) {
    top: 20%;
    left: 50%;
    font-size: 1.7rem;
}

.floating-food-icon:nth-child(6) {
    top: 70%;
    left: 60%;
    font-size: 1.9rem;
}

.floating-food-icon:nth-child(7) {
    top: 40%;
    left: 70%;
    font-size: 1.6rem;
}

.floating-food-icon:nth-child(8) {
    top: 20%;
    left: 80%;
    font-size: 2.1rem;
}

.floating-food-icon:nth-child(9) {
    top: 50%;
    left: 85%;
    font-size: 1.4rem;
}

.floating-food-icon:nth-child(10) {
    top: 70%;
    left: 90%;
    font-size: 1.8rem;
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    z-index: -1;
}

.footer-wave-top svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    z-index: -1;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

/* Payment icons updated styles */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.payment-icon:hover::before {
    left: 100%;
}

.payment-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.payment-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-heading {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transform: translateX(-10px);
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 0.5rem;
    transform: translateX(0);
}

.footer-subscribe-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-subscribe-form {
    margin-bottom: 1.5rem;
}

.footer-subscribe-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-subscribe-form .form-control {
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50px 0 0 50px;
}

.footer-subscribe-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-subscribe-form .btn:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.footer-payment {
    margin-top: 1.5rem;
}

.payment-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.payment-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.payment-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    position: relative;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}