.footer {
    background:linear-gradient(-225deg, rgb(42 111 139) 0%, #27374a 50%, #1b2a38 100%);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-texture-image {
    position: absolute;
    bottom: 0;
    opacity: .4;
    max-width: 12%;
    height: auto;
}

.footer-nav-links {
    padding-left: 40px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 0;
}

.footer-logo img {
    width: 100%;
    margin-bottom: 0px;
    margin-left: -15px;
}

.footer-units {
    display: flex;
}

.footer-unit-div {
    padding-left: 25px;
}

.footer-unit-div .footer-links a {

}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    color: #fff;
}

.footer-logo .chef-hat {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
}

.footer-section p {
    color: white;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid;
    border-radius: 50%;
}

.contact-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s 
ease;
    border: 1px solid;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ee5a52);
    transform: translateY(-3px);
    color: #fff;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    background: #333;
    border: 1px solid #444;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: #3a3a3a;
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-orange), #ee5a52);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    font-weight: 600;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.form-check-input {
    background-color: #333;
    border-color: #555;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.form-check-label {
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check-label a {
    color: var(--primary-orange);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    margin-top: 60px;
    padding-top: 30px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.copyright {
    color: white;
    margin: 0;
}

.copyright a {
    color: var(--primary-orange);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }

    .footer-section {
        margin-bottom: 40px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }
.contact-item:nth-of-type(1) .contact-icon {
    margin-top: -10px;
}

}