/************************** Footer Section **************************/
.site-footer {
    background: linear-gradient(to bottom left, #ffe5d9, #f8e7ed, #fff5f8);
    padding: 50px 20px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid rgba(255, 215, 226, 0.8);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer h3 {
    font-size: 1.5rem;
    color: #b56576;
    margin-bottom: 1rem;
    font-weight: 600;
}

.site-footer p, .site-footer a {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.site-footer a {
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    color: #b56576;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin: 10px 0;
}

.footer-content div {
    background: rgba(255, 255, 255, 0.7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
}

.footer-content div:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Bottom footer area */
.footer-bottom {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 245, 248, 0.9);
    margin-top: 30px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(51, 51, 51, 0.8);
    font-weight: 500;
}

.footer-bottom a {
    color: #b56576;
    text-decoration: underline;
    font-weight: 600;
}
