/* =========================================
   FOOTER EXCLUSIVE CSS
   ========================================= */
.chairy-site-footer {
    background-color: #2c3e50; /* Deep Blue */
    color: #ecf0f1; /* Light Grey/White text */
    padding: 70px 0 20px 0;
    margin-top: 50px;
    font-family: 'Open Sans', sans-serif;
    border-top: 5px solid #f39c12; /* Top Orange Border */
}

.chairy-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* डेस्कटॉप पर 3 कॉलम की ग्रिड */
    gap: 50px;
    margin-bottom: 40px;
}

/* Brand Section */
.chairy-footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}
.chairy-footer-brand span { color: #f39c12; font-weight: 300; }
.chairy-footer-desc { font-size: 0.95rem; line-height: 1.8; margin-bottom: 15px; color: #bdc3c7; }
.chairy-footer-cin { font-size: 0.9rem; background: rgba(255,255,255,0.1); padding: 8px 12px; display: inline-block; border-radius: 4px; border-left: 3px solid #f39c12; }

/* Headings & Lists */
.chairy-footer-heading {
    font-size: 1.2rem;
    color: #f39c12;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.chairy-footer-list { list-style: none; padding: 0; margin: 0; }
.chairy-footer-list li { font-size: 0.95rem; margin-bottom: 12px; color: #bdc3c7; line-height: 1.6; }
.chairy-footer-list li a { color: #bdc3c7; text-decoration: none; transition: 0.3s; }
.chairy-footer-list li a:hover { color: #f39c12; text-decoration: underline; }

/* Social Links */
.chairy-footer-socials { display: flex; gap: 15px; margin-top: 20px; }
.chairy-social-link {
    display: inline-flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; background: rgba(255,255,255,0.1); color: #fff;
    text-decoration: none; font-weight: bold; border-radius: 50%; font-size: 0.85rem;
    transition: 0.3s ease;
}
.chairy-social-link:hover { background: #f39c12; transform: translateY(-3px); }

/* Bottom Copyright Bar */
.chairy-footer-bottom {
    text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px; font-size: 0.85rem; color: #95a5a6;
}

/* =========================================
   MOBILE RESPONSIVENESS (< 991px)
   ========================================= */
@media (max-width: 991px) {
    .chairy-footer-grid {
        grid-template-columns: 1fr; /* मोबाइल पर सब कुछ एक के नीचे एक */
        gap: 40px; text-align: center;
    }
    .chairy-footer-cin { display: block; }
    .chairy-footer-socials { justify-content: center; }
}