    :root {
    --gold: #C9A961;
    --dark: #1a1a1a;
    --brown: #8B7355;
    --text: #2c3e50;
    --white: #ffffff;
}

.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0f0f0f 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--gold));
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 12px;
    
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;

}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: -10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
        text-decoration: none;

}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
    text-decoration: none !important;
}

.footer-contact i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    min-width: 20px;
}

.footer-contact li:hover {
    color: var(--white);
}

.footer-contact li:hover i {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-map iframe {
    width: 100%;
    max-width: 400px;
    height: 250px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.footer-map iframe:hover {
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.col-lg-3:last-child p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    position: relative;
}

.footer-newsletter input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

.footer-newsletter button {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.footer-newsletter button:hover {
    background: var(--brown);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
}

.footer-newsletter button:active {
    transform: scale(0.95);
}

.footer-bottom {
    padding: 1px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .footer {
        padding: 60px 15px 30px;
    }

    .footer-about {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .footer-title {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer::after {
        width: 300px;
        height: 300px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter button {
        width: 100%;
        border-radius: 50px;
        height: 45px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 25px 0;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 10px 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links li {
        transform: none;
    }

    .footer-contact li {
        justify-content: center;
    }

    .col-lg-3:last-child p {
        text-align: center;
    }

    .footer-map iframe {
        height: 150px;
    }
}
