/* ===== FOOTER MAIN ===== */
.site-footer {
    background: radial-gradient(circle at top, #181818, #0f0f0f);
    color: #fdfcf0;
    padding: 90px 20px 40px;
    font-family: 'Montserrat', sans-serif;
    border-top: 2px solid #c5a059;
    position: relative;
}

/* subtle gold glow line */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    transform: translateX(-50%);
}

/* ===== GRID ===== */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADINGS ===== */
.footer-col h3 {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 3px;
    position: relative;
}

/* gold underline */
.footer-col h3::after {
    content: "";
    width: 25px;
    height: 1px;
    background: #c5a059;
    display: block;
    margin-top: 8px;
}

/* ===== TEXT ===== */
.footer-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #b5b5b5;
}

/* ===== LINKS ===== */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.88rem;
}

.footer-col a:hover {
    color: #c5a059;
    transform: translateX(6px);
    display: inline-block;
}

/* ===== SOCIAL ===== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #c5a059 !important;
    font-size: 0.85rem;
    border: 1px solid #2a2a2a;
    transition: all 0.35s ease;
}

.social-icons a:hover {
    background: #c5a059;
    color: #121212 !important;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 15px rgba(197,160,89,0.3);
}

/* ===== CONTACT (IMPORTANT FIX) ===== */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #bbb;
}

.contact-list .icon {
    color: #c5a059;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.9;
}

/* hover effect */
.contact-list li:hover .icon {
    color: #fff;
}

.contact-list a {
    color: #bbb;
}

.contact-list a:hover {
    color: #c5a059;
}

/* ===== WEATHER ===== */
.weather-wrapper {
    min-height: 210px;
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.weather-wrapper::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: rotate(25deg);
}

/* current weather */
.weather-now {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c5a059;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

/* tagline */
.weather-tagline {
    font-size: 0.65rem;
    color: #c5a059;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* description */
#weather-desc {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    font-style: italic;
}

/* loading */
#weather-loading {
    color: #777;
    font-size: 0.75rem;
    padding-top: 60px;
}

/* forecast */
.forecast-grid {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 15px;
}

.forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.forecast-day span {
    display: block;
}

.day-name {
    color: #777;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 600;
}

.weather-icon,
.forecast-day span:nth-child(2) {
    font-size: 1.1rem;
}

.day-temp {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.day-min {
    font-size: 0.65rem;
    color: #666;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    text-align: center;
    margin-top: 70px;
    border-top: 1px solid #1f1f1f;
    padding-top: 25px;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 1.5px;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 10000;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #128c7e;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .site-footer {
        padding: 60px 20px 20px;
    }

    .footer-container {
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-col a:hover {
        transform: none;
    }

    .forecast-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}