/* ================================
   FOOTER - MODERN STYLE CSS
   ================================ */

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --text-dark: #ffffff;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

/* Footer Main Container */
.wild-footer {
    background: linear-gradient(135deg, #29610a 0%, #29610a 100%);
    padding: 60px 0 20px;
    overflow: hidden;
}
/* Footer Widgets */
.wild-widget {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Widget Box */
.wild-widget .wild-box {
    /* padding: 20px; */
    /* background: rgba(255, 255, 255, 0.7); */
    border-radius: 8px;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(124, 179, 66, 0.1); */
    transition: var(--transition);
}

/* Widget Title */
.wild-widget-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wild-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

/* Widget Text */
.wild-widget-text {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    font-style: inherit;
}

/* Menu List */
.wild-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wild-menu-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.wild-menu-list li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.wild-menu-list li a::before {
    content: '➜';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary-color);
}

.wild-menu-list li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.wild-menu-list li a:hover::before {
    opacity: 1;
    left: -25px;
}

/* Contact Info */
.wild-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(255 255 255 / 37%);
    animation: slideInLeft 0.6s ease-out;
}

.wild-contact-item:last-child {
    border-bottom: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icon {
    font-size: 24px;
    color: #ffffff;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    animation: iconBounce 0.6s ease-out 0.1s both;
}

.wild-contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    color: #fff;
    text-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
}

@keyframes iconBounce {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.wild-contact-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 1px;
}

.wild-address {
    color: #ffffff;
    font-weight: 600;
}

/* Link Style */
.wild-link-style a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.wild-link-style a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.wild-link-style a:hover::after {
    width: 100%;
}

/* Go To Top Button */
#scroll-top {
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}

#scroll-top .go-top {
    display: inline-block;
}

#scroll-top h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#scroll-top a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

#scroll-top a:hover {
    transform: translateY(-5px);
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .wild-footer {
        padding: 40px 0 15px;
    }
    
    .wild-widget {
        margin-bottom: 30px;
    }
    
    .wild-widget-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .wild-widget-text {
        font-size: 16px;
    }
    
    .wild-menu-list li {
        margin-bottom: 10px;
    }
    
    .wild-contact-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wild-footer {
        padding: 30px 0 10px;
    }
    
    .wild-widget-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .wild-widget-title::after {
        width: 40px;
    }
    
    .wild-menu-list li a {
        font-size: 16px;
    }
}

/* Gallery Plus Icon Overlay */
.overlay-plus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.images:hover .overlay-plus {
    opacity: 1;
}

.plus-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #29610a 0%, #3a7d0d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.plus-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(41, 97, 10, 0.4);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #29610a 0%, #3a7d0d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 97, 10, 0.3);
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #3a7d0d 0%, #4a9d1d 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(41, 97, 10, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

/* Snow Effect & Marquee Section */
.snow-marquee-section {
    position: relative;
    padding: 0px 0;
    background: linear-gradient(135deg, #29610a 0%, #3a7d0d 100%);
    overflow: hidden;
    z-index: 0;
}

#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    pointer-events: none;
    z-index: 1;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 35px 0;
    z-index: 20;
    margin-bottom: 0px;
}

.marquee-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.marquee-content span {
    margin-right: 50px;
    display: inline-block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.snow-marquee-section .container {
    position: relative;
    z-index: 20;
}

.snow-marquee-section .heading-section h5,
.snow-marquee-section .heading-section h2,
.snow-marquee-section .heading-section h4 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.snow-marquee-section .form-submit input,
.snow-marquee-section .form-submit button {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}