/* Footer Styles */
.footer {
    background: #004923;
    position: relative;
    overflow: hidden;
}

.footer-main {
    padding: 60px 0 35px;
    position: relative;
    z-index: 2;
    background-image: url(/assets/default/img/footer-bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.footer-content {
    display: grid;
    grid-template-columns: 0.7fr 2fr;
    gap: 60px;
    align-items: start;
}

/* Logo section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    height: 130px;
    width: auto;
}

.footer-contact-info {
    color: #ffffff;
    font-size: 18px;
    font-weight: 100;
    padding-right: 60px;
    line-height: 1.2;
}

.footer-description {
    line-height: 1.2;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-contact-item:hover {
    color: #C19736;
    transform: translateX(5px);
}

.footer-contact-item i {
    color: #C19736;
    font-size: 16px;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Navigation sections */
.footer-nav-sections {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: 0;
    margin-top: 77px;
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav-title {
    color: #C19736;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    padding-right: 50px;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 20px;
    font-weight: 100;
}

.footer-nav-links li {
    margin-bottom: 17px;
}

.footer-nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 5px 0;
}

.footer-nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C19736;
    transition: width 0.3s ease;
}

.footer-nav-links a:hover {
    color: #C19736;
    transform: translateX(5px);
}

.footer-nav-links a:hover::before {
    width: 100%;
}

/* Social media section */
.footer-social-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 120px;
    margin-top: 20px;
}

.footer-social-title {
    color: #C19736;
    font-size: 21px;
    font-weight: 600;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 47px;
    height: 47px;
    border: 1px solid #e0cb9b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0cb9b;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover {
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon i {
    font-size: 23px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Facebook specific styles */
.social-icon.facebook:hover {
    background: #1877F2;
    color: #ffffff;
    border-color: #1877F2;
}

/* LinkedIn specific styles */
.social-icon.linkedin:hover {
    background: #0077B5;
    color: #ffffff;
    border-color: #0077B5;
}

/* Instagram specific styles */
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #ffffff;
    border-color: #bc1888;
}

/* Twitter specific styles */
.social-icon.twitter:hover {
    background: #1DA1F2;
    color: #ffffff;
    border-color: #1DA1F2;
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.3);
}

/* YouTube specific styles */
.social-icon.youtube:hover {
    background: #FF0000;
    color: #ffffff;
    border-color: #FF0000;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

/* TikTok specific styles */
.social-icon.tiktok:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Contact button */
.footer-contact-btn {
    margin-top: 10px;
}

.btn-contact {
    background: #C19736;
    color: #ffffff;
    border: 2px solid #C19736;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    max-width: 171px;
    font-family: 'Outfit';
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-contact:hover {
    background: #ffffff;
    color: #C19736;
    border: 1px solid;
}

.btn-contact:hover::before {
    left: 100%;
}

.btn-contact:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Bottom bar */
.footer-bottom {
    background: #C19736;
    padding: 15px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 15px;
    margin-right: 40px;
    font-weight: 300;
}

.footer-copyright {
    margin: 0;
}

.footer-credits {
    margin: 0;
}

.footer-credits a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-credits a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-credits a:hover {
    transform: translateY(-1px);
}

.footer-credits a:hover::before {
    width: 100%;
}

/* Responsive design */

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 60px;
        background-size: 70%;
        background-position: right bottom;
        background-image: url(/assets/default/img/transparent-logo-7.png);
    }
    
    .footer-nav-sections {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-social-icons {
    }
    
    .btn-contact {
        max-width: 100%;
    }
    
    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(192, 151, 54, 0.3);
    }
    
    .footer-logo img {
        height: 100px;
    }
    
    .social-icon:hover {
        transform: translateY(-2px) scale(1.05);
    }
    
    .footer-nav-links a:hover {
        transform: translateX(3px);
    }
    
    .footer-contact-item:hover {
        transform: translateX(3px);
    }
    
    .footer-nav-title {
        font-size: 17px;
    }

.footer-nav-title br {
    display: none;
}
    
    .footer-social-title {
        font-size: 16px;
    }.footer-content{
    display: flex;
    flex-direction: column;
    gap: 0;
}.footer-social-section{
    padding-left: 0;
    max-width: 180px;
}.footer-copyright{
    font-size: 13px;
}.footer-credits{display:none}
}

@media (max-width: 360px) {
    .footer-bottom-content{
        margin-right: 0;
    }
}