/**
Theme Name: Astra child by SoloTutes
Author: Prakash Joshi
Author URI: https://prakashjoshi.in
Description: This is the Astra child theme for solotutes self branding
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child-by-solotutes
Template: astra
*/

/* Premium Footer Styling */
.st-premium-footer {
    background-color: #0B1120; /* Deep premium blue/black */
    color: #94A3B8;
    font-family: system-ui, -apple-system, sans-serif;
    padding-top: 40px;
    border-top: 1px solid #1E293B;
}

.st-footer-container {
    max-width: 1200px;
    margin: 0 auto;  
    padding: 0 20px;
}

/* Top CTA Section */
.st-footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0A63E8, #0043A8);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 40px;
    color: #fff;
}
.st-footer-cta h3 { margin: 0 0 8px; color: #fff; font-size: 22px; }
.st-footer-cta p { margin: 0; opacity: 0.9; }
.st-btn-primary {
    background: #fff;
    color: #0A63E8;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.st-btn-primary:hover { background: #f8fafc; transform: translateY(-2px); }

/* Main Grid */
.st-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Typography & Links */
.st-col-title {
    color: #F8FAFC;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.st-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.st-links-list li { margin-bottom: 12px; }
.st-links-list a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.st-links-list a:hover { color: #0A63E8; }

/* Brand Column */
.st-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.st-footer-logo { width: 45px; height: 45px; border-radius: 50%; }
.st-brand-name { font-size: 24px; font-weight: bold; color: #fff; }
.st-desc { line-height: 1.6; font-size: 14px; margin-bottom: 24px; }

/* Community Box */
.st-community-box {
    background: #1E293B;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #0A63E8;
}
.st-community-box h4 { color: #fff; margin: 0 0 5px; font-size: 16px; }
.st-community-box p { font-size: 13px; margin: 0 0 15px; }
.st-social-links { display: flex; gap: 10px; margin-bottom: 15px; }
.social-btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    flex: 1;
    text-align: center;
}
.social-btn.telegram { background: #0088cc; color: #fff; }
.social-btn.whatsapp { background: #25D366; color: #fff; }
.st-social-icons { display: flex; gap: 15px; font-size: 13px; }
.st-social-icons a { color: #94A3B8; text-decoration: none; }

/* Footer Bottom */
.st-footer-bottom {
    background-color: #020617;
    padding: 20px 0;
    font-size: 14px;
}
.st-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.st-creator a { color: #fff; text-decoration: none; font-weight: bold; }

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .st-footer-grid { grid-template-columns: 1fr 1fr; }
    .st-footer-cta { flex-direction: column; text-align: center; gap: 20px; }
}
@media (max-width: 576px) {
    .st-footer-grid { grid-template-columns: 1fr; }
    .st-bottom-flex { flex-direction: column; text-align: center; gap: 10px; }
}