/* =========================================
   🌟 LIGHT LUXURY FOOTER (RED + GOLD)
========================================= */

.footer-section {
    position: relative;
    background: linear-gradient(135deg, #fff5f5, #ffecec);
    padding: 80px 0 30px;
    color: #222;
    overflow: hidden;
}

/* 🔥 TOP BRAND STRIP */
.footer-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d9423a, #d4af37);
}

/* ✨ SOFT GLOW */
.footer-section::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(217,66,58,0.08), transparent);
    filter: blur(80px);
}

/* =========================================
   🧊 CARD STYLE
========================================= */

.footer-inner {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* =========================================
   ✍️ TEXT
========================================= */

.footer-title {
    color: #d9423a;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-text {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

.footer-contact {
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact strong {
    color: #111;
}

.footer-contact a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #d9423a;
}

/* ICON */
.footer-contact i {
    color: #d9423a;
    margin-right: 8px;
}

/* =========================================
   🌐 SOCIAL
========================================= */

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff0f0;
    color: #d9423a;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #d9423a, #d4af37);
    color: #fff;
    transform: translateY(-4px);
}

/* =========================================
   🔻 BOTTOM
========================================= */

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #777;
}

/* =========================================
   📱 RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .footer-inner {
        padding: 25px 20px;
    }
}