.site-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 0;
    position: relative;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-widgets {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr;
    gap: 30px;
    position: relative;
}

.footer-column {
    position: relative;
}

/* Add border lines between columns */
.footer-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer Info Block */
.footer-info {
    padding-right: 0;
}

.footer-info .site-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-description {
    margin: 20px 0;
    color: #999;
    line-height: 1.6;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #1c1c1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link i {
    font-size: 16px;
    line-height: 1;
}

.social-link:hover {
    background-color: #e86c13;
    color: #fff;
}

/* Specific icon adjustments */
.social-link .fa-facebook-f {
    font-size: 15px;
}

.social-link .fa-x-twitter {
    font-size: 16px;
}

.social-link .fa-snapchat-ghost {
    font-size: 18px;
}

/* Footer Address Block */
.footer-address {
    padding: 0;
}

.footer-address .widget-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-address-info {
    margin-top: 20px;
}

.footer-address-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    gap: 5px;
}

.footer-address-label {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
}

.footer-address-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: inline-block;
}

.footer-location-link {
    display: inline-block;
    color: #e86c13;
    text-decoration: none;
    margin-top: 25px;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #e86c13;
    padding-bottom: 2px;
    font-size: 15px;
}

.footer-location-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Footer Newsletter Block */
.footer-newsletter {
    padding-left: 0;
}

.footer-newsletter .widget-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-newsletter p {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form {
    margin: 30px 0 0;
    max-width: 400px;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.form-group input[type="email"] {
    width: 100%;
    height: 50px;
    padding: 0 100px 0 15px;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 15px;
}

.form-group input[type="email"]::placeholder {
    color: #666;
}

.btn-signup {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 38px;
    padding: 0 20px;
    background-color: #e86c13;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-signup:hover {
    background-color: #d55d0e;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background-color: #000;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
}

.copyright a {
    color: #e86c13;
    text-decoration: none;
}

.footer-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e86c13;
}


@media (max-width: 991px) {
    .footer-grid {
        gap: 30px;
    }
    
    .footer-column:not(:last-child) {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        padding: 0;
    }
    
    .footer-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0 0 40px 0;
    }

    .footer-info,
    .footer-address,
    .footer-newsletter {
        padding: 0;
    }

    .newsletter-form {
        margin: 30px auto;
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-address .widget-title {
        text-align: center;
    }

    .footer-address-label {
        margin-bottom: 5px;
        display: block;
        text-align: center;
    }

    .footer-address-value {
        display: block;
        text-align: center;
    }

    .footer-location-link {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-column:not(:last-child) {
        padding-bottom: 30px;
    }

    .form-group input[type="email"] {
        padding-right: 90px;
    }

    .btn-signup {
        padding: 0 15px;
    }

    .footer-address .widget-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .footer-address-item {
        margin-bottom: 20px;
    }
} 