/* ===== Footer Styles ===== */
/* Base Styles */
.new-footer {
    background: linear-gradient(135deg, #0a4a0a 0%, #1a7a1a 100%);
    color: #ffffff;
    position: relative;
    padding: 80px 0 0;
    margin-top: 100px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    font-size: 15px;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

/* Wave Divider */
.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-99%);
    z-index: 1;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out;
}

/* Company Info */
.company-info .footer-logo h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.company-info .footer-logo h3 span {
    color: #4CAF50;
    font-weight: 700;
}

.company-info .tagline {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Individual icon colors */
.social-icon.facebook { color: #4267B2; }
.social-icon.twitter { color: #1DA1F2; }
.social-icon.instagram { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.social-icon.youtube { color: #FF0000; }
.social-icon.whatsapp { color: #25D366; }
}

.social-icon.whatsapp:hover { background: #25D366; }
.social-icon.facebook:hover { background: #1877F2; }
.social-icon.twitter:hover { background: #1DA1F2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.social-icon.youtube:hover { background: #FF0000; }

/* Footer Headings */
.footer-heading {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 3px;
}

/* Quick Links */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-menu li:hover {
    transform: translateX(5px);
}

.footer-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: #4CAF50;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

/* Contact Info */
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-details li:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #4CAF50;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-details li:hover .contact-icon {
    background: #4CAF50;
    color: #ffffff;
    transform: rotate(5deg) scale(1.1);
}

.contact-text h5 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.contact-text p, 
.contact-text a {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

/* Business Hours */
.hours-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.current-time {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current-time i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #4CAF50;
}

#current-time {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Courier New', monospace;
}

.status-badge {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: inline-flex;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #e0e0e0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    font-weight: 500;
    color: #4CAF50;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
    position: relative;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

.design-credit {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin: 0;
}

.design-credit a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.design-credit a:hover {
    color: #8BC34A;
    text-decoration: underline;
}

.design-credit i {
    color: #ff6b6b;
    margin: 0 3px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Contact Item Styles */
.contact-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #2196F3;
    transition: height 0.3s ease;
    border-radius: 0 0 3px 3px;
}

.contact-item:hover:before {
    height: 100%;
}

.contact-item:hover .contact-text i {
    transform: scale(1.2);
    color: #4CAF50;
}

/* Clock Styles */
.clock-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.clock {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateY(-3px);
}

.hand {
    width: 50%;
    height: 4px;
    background: #FFC107;
    position: absolute;
    top: 50%;
    transform-origin: 100%;
    transform: rotate(90deg);
    transition: all 0.5s cubic-bezier(0.1, 2.7, 0.58, 1);
    border-radius: 2px;
}

.hour-hand {
    width: 30%;
    left: 20%;
    background: #FF9800;
    height: 5px;
}

.min-hand {
    width: 40%;
    left: 10%;
    background: #FFC107;
    height: 4px;
}

.second-hand {
    width: 45%;
    left: 5%;
    background: #FF5722;
    height: 2px;
    transition: transform 0.2s cubic-bezier(0.4, 2.3, 0.3, 1);
}

.center-dot {
    width: 12px;
    height: 12px;
    background: #FF5722;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Business Hours */
.business-hours .footer-heading {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.business-hours .footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF9800, #FFC107);
    border-radius: 3px;
}

.hours-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.day:last-child {
    border-bottom: none;
}

.day-name {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

.time {
    color: #a0e8a0;
    font-size: 0.9rem;
    margin-left: 15px;
    text-align: right;
    transition: all 0.3s ease;
}

.time.closed {
    color: #ff9e9e;
}

.time-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.time-indicator.active {
    opacity: 1;
    animation: pulse 2s infinite;
}

.time-indicator.closed {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1), transparent);
}

.current-status {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #888;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

.status-dot.open {
    background: #4CAF50;
    box-shadow: 0 0 5px #4CAF50;
}

.status-dot.closed {
    background: #F44336;
    box-shadow: 0 0 5px #F44336;
}

.status-text {
    color: #e0e0e0;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .copyright,
    .footer-bottom .design-credit {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }
}
