
/* ==========================================
   MOBILE FOOTER STYLES ONLY
   ========================================== */
   
   @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

.city-green-mobile-footer {
    background: #004D40;
    color: white;
   font-family: 'Noto Sans Devanagari', sans-serif;
    margin-top: 30px;
}

/* Footer Top Section */
.city-green-mobile-footer-top {
    background: linear-gradient(135deg, #00695C 0%, #004D40 100%);
    padding: 25px 15px;
    border-top: 4px solid #00897B;
}

.city-green-mobile-footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.city-green-mobile-footer-logo a {
    display: inline-block;
}

.city-green-mobile-footer-logo img {
    max-width: 200px;
    height: auto;
    
}

.city-green-mobile-footer-tagline {
    text-align: center;
    font-size: 13px;
    color: #B2DFDB;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Quick Links */
.city-green-mobile-quick-links {
    margin-bottom: 25px;
}

.city-green-mobile-quick-links h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    /* ✅ FROSTED GLASS EFFECT */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 14px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.city-green-mobile-quick-links h3 i {
    color: #baff3e;
}

.city-green-mobile-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.city-green-mobile-footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.city-green-mobile-footer-link:hover,
.city-green-mobile-footer-link:active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: #00897B;
}

.city-green-mobile-footer-link i {
    font-size: 14px;
    color: #baff3e;
}

/* Social Media Section */
.city-green-mobile-social-section {
    margin-top: 25px;
    text-align: center;
}

.city-green-mobile-social-section h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-green-mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.city-green-mobile-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.city-green-mobile-social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Newsletter Section */
.city-green-mobile-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    margin-top: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-green-mobile-newsletter h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-green-mobile-newsletter h3 i {
    color: #baff3e;
}

.city-green-mobile-newsletter p {
    font-size: 12px;
    color: #B2DFDB;
    margin-bottom: 15px;
    line-height: 1.5;
}

.city-green-mobile-newsletter-form {
    display: flex;
    gap: 8px;
}

.city-green-mobile-newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    outline: none;
}

.city-green-mobile-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.city-green-mobile-newsletter-form button {
    padding: 12px 20px;
    background: #00897B;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.city-green-mobile-newsletter-form button:hover {
    background: #00695C;
    transform: translateY(-2px);
}

/* Footer Bottom */
.city-green-mobile-footer-bottom {
    background: #003D33;
    padding: 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.city-green-mobile-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.city-green-mobile-footer-bottom-links a {
    color: #B2DFDB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.city-green-mobile-footer-bottom-links a:hover {
    color: #baff3e;
}

.city-green-mobile-copyright {
    text-align: center;
    font-size: 12px;
    color: #80CBC4;
    line-height: 1.6;
}

.city-green-mobile-copyright strong {
    color: white;
    font-weight: 600;
}

/* Back to Top Button */
.city-green-mobile-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #00897B;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    
    /* ✅ ARROW KO CENTER ME LAYE */
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-green-mobile-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.city-green-mobile-back-to-top:hover {
    background: #00695C;
    transform: translateY(-3px);
}
