/* Custom footer styles */
.footer {
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #fff;
    position: relative;
}

.footer-heading:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--green);
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--green);
    padding-left: 5px;
}

.contact-info {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--green);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--green);
    transform: translateY(-3px);
}

.blog-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.blog-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.blog-content {
    margin-left: 15px;
}

.blog-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.blog-content a {
    color: #fff;
    text-decoration: none;
}

.blog-content a:hover {
    color: var(--green);
}

.blog-meta {
    font-size: 0.8rem;
    color: #95a5a6;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #2980b9;
}

.hours-info {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.hours-info i {
    color: var(--green);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 30px;
    }

    .footer-heading:after {
        margin: 10px auto 0;
    }
}
