/*** 

====================================================================
	Main Footer
====================================================================

***/

/* Main Footer Container */
.main-footer {
    background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

/* Footer Content Container */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 1;
}

/* Main Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Company Info Column */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-description {
    color: #000;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Newsletter Section */
.footer-newsletter h6 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.footer-newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 14px;
    outline: none;
    transition: background 0.3s ease;
}

.footer-newsletter-input:focus {
    background: rgba(255,255,255,1);
}

.footer-newsletter-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-1px);
}

/* Footer Sections */
.footer-section h5 {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    background: linear-gradient(90deg, #4CAF50, #45a049);
    height: 3px;
    width: 50px;
    display: block;
    position: absolute;
    bottom: 0;
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #4CAF50;
    padding-left: 10px;
}

.footer-links a i {
    font-size: 12px;
    margin-right: 10px;
    opacity: 0.7;
}

/* Download Link */
.footer-download-link {
    color: #4CAF50 !important;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-top: 10px;
    padding: 12px 15px !important;
}

.footer-download-link:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
    padding-left: 15px !important;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgb(111 98 98 / 8%);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
}

.footer-contact-icon {
    color: #4CAF50;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
    min-width: 25px;
}

.footer-contact-text {
    color: #000;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-link {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #4CAF50;
}

/* Social Media */
.footer-social h6 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.footer-social-facebook {
    background: linear-gradient(45deg, #3b5998, #4267B2);
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.3);
}

.footer-social-facebook:hover {
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.4);
}

.footer-social-twitter {
    background: linear-gradient(45deg, #1da1f2, #0d95e8);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.footer-social-twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
}

.footer-social-youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.footer-social-youtube:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.footer-social-instagram {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social-instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 40px 15px 0 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .footer-bottom-content > ul {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .footer-newsletter-form {
        flex-direction: column !important;
        border-radius: 8px !important;
    }

    .footer-newsletter-input {
        border-radius: 8px 8px 0 0 !important;
    }

    .footer-newsletter-btn {
        border-radius: 0 0 8px 8px !important;
        min-width: auto !important;
    }

    .footer-section h5, 
    .footer-newsletter h6,
    .footer-social h6 {
        font-size: 16px !important;
    }

    .footer-social-links {
        justify-content: center !important;
    }
}

/* Newsletter Box */

.newsletter-box{
    position: relative;
	margin-top:35px;
}

.newsletter-box .form-group {
    position: relative;
    margin: 0px;
    width: 100%;
    max-width: 100%;
}

.newsletter-box .form-group input[type="text"],
.newsletter-box .form-group input[type="email"] {
    position: relative;
    line-height: 43px;
    display: block;
    height: 64px;
    width: 100%;
	border-radius: 50px;
    box-shadow: inherit;
    font-size: 16px;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 10px 30px;
    color:var(--white-color);
    background: rgba(var(--white-color-rgb), 0.10);
}

.newsletter-box .form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
	width:55px;
	height:55px;
	border-radius:50px;
    font-weight: 500;
	text-align: center;
    display: inline-block;
    font-size: 28px;
    color: var(--white-color);
    text-transform: uppercase;
	border-radius: 50px;
    background-color: var(--color-two);
	font-family: "flaticon_mycollection";
}

.newsletter-box .form-group button:hover{
	background-color: var(--color-three);
}



.footer-logo{
	position: relative;
	margin-bottom: 30px;
}

.footer-text{
	position: relative;
	color: var(--white-color);
}

.footer_socials{
	position: relative;
	margin-top: 25px;
}

.footer_socials a{
	position: relative;
	width: 42px;
	height: 42px;
	font-size:18px;
	margin-right: 2px;
	line-height: 42px;
	text-align: center;
	border-radius: 50px;
	display: inline-block;
	color: var(--white-color);
	font-family: 'Font Awesome 5 Brands';
}

.footer_socials a:hover{
	color: var(--white-color);
	background-color: var(--color-three);
}

.main-footer .widgets-section{
	position:relative;
	padding:100px 0px 70px;
}

.footer-title{
	position: relative;
	margin-top: 10px;
	margin-bottom: 20px;
	color: var(--white-color);
	text-transform: capitalize;
}

.footer-column{
	position: relative;
	margin-bottom: 25px;
}

.footer-list{
	position: relative;
}

.footer-list li{
	position: relative;
	margin-bottom: 15px;

}

.footer-list li:last-child{
	margin-bottom: 0px;
}

.footer-list li a{
	position: relative;
	font-size: 18px;
	color: var(--white-color);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.footer-list li a::before{
	position: absolute;
	content: '\f058';
	left: 0px;
	top: -2px;
	opacity: 0;
	font-weight: 800;
	font-size:14px;
	color: var(--color-two);
	font-family: 'Font Awesome 6 Free';
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.footer-list li a:hover::before{
	opacity: 1;
}

.footer-list li a:hover{
	color: var(--color-two);
	padding-left: 20px;
}

/* News Widget */

.news-widget-block{
	position: relative;
	min-height: 70px;
	padding-left: 85px;
	margin-bottom: 25px;
}

.news-widget_image{
	position: absolute;
	left: 0px;
	top: 2px;
	width: 70px;
	overflow: hidden;
}

.news-widget_title{
	position: relative;
	font-weight: 600;
	margin-top:5px;
}

.news-widget_title a{
	position: relative;
	color: var(--white-color);
}

.news-widget_post-date{
	position: relative;
	font-weight: 400;
	font-size: 14px;
	color: var(--white-color);
	padding-left: 25px;
	margin-top: 5px;
}

.news-widget_post-date::before{
	position: absolute;
	content: '\f017';
	left: 0px;
	font-size:16px;
	font-weight: 700;
	color: var(--color-two);
	font-family: 'Font Awesome 6 Free';
}

.news-widget-block:last-child{
	margin-bottom: 0px;
}

.news-widget_title a:hover{
	color: var(--color-two);
}

.footer-contact_list{
	position: relative;
}

.footer-contact_list li{
	position: relative;
	line-height: 28px;
	font-size: 16px;
	color: var(--white-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.footer-contact_list li .icon{
	position: absolute;
	left: 0px;
	top: 5px;
	line-height: 1em;
	color: var(--color-two);
}

.footer-bottom{
	position: relative;
	padding: 20px 0px;
	background-color: var(--color-seven);
}

.footer-bottom:before{
	position: absolute;
	content:'';
	right:0px;
	top:0px;
	bottom:0px;
	width:200%;
	border-radius:0px 15px 0px 0px;
	background-color: #2d2c24;
}

.main-footer_copyright{
	position: relative;
	font-size: 16px;
	color: var(--white-color);
}

.main-footer_copyright a{
	position: relative;
	color: var(--color-two);
}

.footer_column{
	position: relative;
	margin-bottom: 30px;
}


.footer-bottom_nav{
	position:relative;
	padding-right:35px;
}

.footer-bottom_nav li{
	position:relative;
	margin-left:15px;
	display:inline-block;
}

.footer-bottom_nav li a{
	position:relative;
	font-size: 16px;
	color: var(--white-color);
}

.footer-bottom_nav li a:hover{
	color: var(--color-two);
}