/* Footer */
.westcotts-footer {
    background-color: #4d5153;
    color: #ecebe9;
    padding: 60px 0 40px 0;
    border-top: 3px solid #af8c59;
}

.westcotts-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(236, 235, 233, 0.2);
}

.westcotts-footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #af8c59;
    font-weight: 600;
}

.westcotts-footer-about p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 350px;
}

.westcotts-footer-links h4,
.westcotts-footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ecebe9;
    font-weight: 600;
}

.westcotts-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.westcotts-footer-links li {
    margin-bottom: 12px;
}

.westcotts-footer-links a {
    color: #ecebe9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.westcotts-footer-links a:hover {
    color: #af8c59;
}

.westcotts-footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ecebe9;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: opacity 0.3s ease;
}

.westcotts-footer-contact a:hover {
    opacity: 0.8;
}

.westcotts-footer-contact i {
    font-size: 14px;
    width: 18px;
}

.westcotts-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.westcotts-footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.westcotts-footer-bottom a {
    color: #ecebe9;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.westcotts-footer-bottom a:hover {
    opacity: 0.8;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .westcotts-footer {
        padding: 50px 0 35px 0;
    }
    
    .westcotts-footer-top {
        gap: 40px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
    
    .westcotts-footer-about h3 {
        font-size: 1.4rem;
    }
    
    .westcotts-footer-about p {
        font-size: 14px;
    }
    
    .westcotts-footer-links h4,
    .westcotts-footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .westcotts-footer-links a,
    .westcotts-footer-contact a {
        font-size: 14px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .westcotts-footer {
        padding: 40px 0 30px 0;
    }
    
    .westcotts-footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        text-align: center;
    }
    
    .westcotts-footer-about p {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .westcotts-footer-contact a {
        justify-content: center;
    }
    
    .westcotts-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
    .westcotts-footer {
        padding: 35px 0 25px 0;
    }
    
    .westcotts-footer-top {
        gap: 25px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .westcotts-footer-about h3 {
        font-size: 1.3rem;
    }
    
    .westcotts-footer-about p {
        font-size: 13px;
        max-width: 300px;
    }
    
    .westcotts-footer-links h4,
    .westcotts-footer-contact h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .westcotts-footer-links a,
    .westcotts-footer-contact a {
        font-size: 13px;
    }
    
    .westcotts-footer-bottom p,
    .westcotts-footer-bottom a {
        font-size: 13px;
    }
}