footer {
    background: linear-gradient(135deg, var(--primary-brown) 0%, #2a1c12 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--accent-gold),
        var(--secondary-brown)
    );
}

.footer-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-logo img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.footer-links h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-gold),
        var(--secondary-brown)
    );
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    color: var(--accent-gold);
    margin-right: 12px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a::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: left 0.5s;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 280px;
}

.footer-map iframe {
    border-radius: 10px;
    height: 100%;
}

.footer-map h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-map h3:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--accent-gold),
        var(--secondary-brown)
    );
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background: var(--accent-gold);
    color: var(--primary-brown);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e6c34d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-map {
        margin-top: 30px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
}

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

    .newsletter-form {
        flex-direction: column;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
    }
}
