:root {
    --footer-bg: #050913;        /* Deep Dark Navy */
    --text-light: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark-muted: #64748b;
    --accent-green: #22c55e;     /* Primary Green */
    --accent-green-hover: #16a34a;
    --border-glow: rgba(255, 255, 255, 0.08);
    --box-bg: rgba(255, 255, 255, 0.03);
}

.minimal-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
    font-family: 'Hind Siliguri', 'SolaimanLipi', sans-serif;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Support Section ===== */
.support-section h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.support-box {
    background: var(--box-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    display: inline-block;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.support-box:hover {
    border-color: rgba(34, 197, 94, 0.2); /* হোভারে হালকা গ্রিন গ্লো */
}

.email-id {
    display: inline-block;
    color: var(--accent-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.email-id:hover {
    color: var(--accent-green-hover);
}

.support-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* ===== Divider & Bottom ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: var(--text-dark-muted);
}

.copyright span {
    color: #ffffff;
    font-weight: 600;
}

.policy-link {
    color: var(--text-dark-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-link:hover {
    color: #ef4444; /* Refund পলিসির জন্য রেড হাইলাইট */
    border-bottom-color: #ef4444;
}

/* ===== Responsive (Mobile) ===== */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .support-box {
        padding: 20px;
    }
}